Xtinia Wiki xtinia https://xtinia.fandom.com/wiki/Xtinia_Wiki MediaWiki 1.43.1 first-letter Media Special Talk User User talk Xtinia Wiki Xtinia Wiki talk File File talk MediaWiki MediaWiki talk Template Template talk Help Help talk Category Category talk Forum Forum talk GeoJson GeoJson talk User blog User blog comment Blog Blog talk Module Module talk Message Wall Thread Message Wall Greeting Board Board Thread Topic Map Map talk Main Page 0 80 81 2018-03-04T21:24:05Z FANDOM 32769624 FANDOM moved page [[Main Page]] to [[Xtinia Wiki]]: SEO 81 wikitext text/x-wiki #REDIRECT [[Xtinia Wiki]] 6ccrup6jpjv7eacys9e2a1vrp8uyc2e Acronyms 0 108 121 2018-03-09T16:37:00Z NoneTheFewer 214879 Created page with "{|class="article-table sortable" ! Acronym ! Expanded ! Notes |- | SOA | Start Of Authority | SOA record: info stored in a DNS zone about that zone |- | EDGAR | Electronic Dat..." 121 wikitext text/x-wiki {|class="article-table sortable" ! Acronym ! Expanded ! Notes |- | SOA | Start Of Authority | SOA record: info stored in a DNS zone about that zone |- | EDGAR | Electronic Data Gathering, Analysis, and Retrieval | "In 1984, EDGAR began collecting electronic documents to help investors get information." |- | ICMP | Internet Control Message Protocol | "used by network devices, including routers, to send error messages and operational information" |} 8e7q2qzientc4nun4ifjovjtauloc58 Android 0 112 128 2018-03-11T15:14:39Z NoneTheFewer 214879 Created page with "Links for installing LineageOS and related items. * [https://wiki.lineageos.org/devices/hammerhead/install Install on Hammerhead] * [https://android.gadgethacks.com/how-to/in..." 128 wikitext text/x-wiki Links for installing LineageOS and related items. * [https://wiki.lineageos.org/devices/hammerhead/install Install on Hammerhead] * [https://android.gadgethacks.com/how-to/install-apps-from-play-store-without-gapps-google-services-0176241/ Yalp Store] Some apps to install, should I wish it: [[Category:Phones]] ma89qzkt37id8lz7rv2jp4odcwum50w Automator 0 124 157 2018-04-07T13:14:57Z NoneTheFewer 214879 Created page with " == Merge PDFs == Source: https://paulminors.com/merge-pdfs-mac-automator/ # Open Automator. # Create a new workflow. # Add the following items, in this specific order: ## ..." 157 wikitext text/x-wiki == Merge PDFs == Source: https://paulminors.com/merge-pdfs-mac-automator/ # Open Automator. # Create a new workflow. # Add the following items, in this specific order: ## Combine PDF Pages ## Move Finder Items ## Rename Finder Items: Name Single Item (Basename: Merged) ## Rename Finder Items: Add Date or Time ## Display Notification (Merge Complete; Your PDFs have been merged and saved to the desktop.) # Save as "Merge PDFs". To use: * Select multiple PDFs. * Option-click. * Select "Merge PDFs". {{Todo|Can I have this save the merged PDF to the source folder?}} {{Todo|What if the file already exists?}} {{Todo|Can I rename it to have proper Unix datetime stamp?}} [[Category:Automator]] [[Category:MacOS]] [[Category:Coding]] 82ljvvuz3juejcqp1teaixx3n3b3a9x 158 157 2018-04-07T13:17:07Z NoneTheFewer 214879 158 wikitext text/x-wiki == Merge PDFs == Source: https://paulminors.com/merge-pdfs-mac-automator/ # Open Automator. # Create a new workflow. # Add the following items, in this specific order: ## Combine PDF Pages ## Move Finder Items ## Rename Finder Items: Name Single Item (Basename: Merged) ## Rename Finder Items: Add Date or Time ## Display Notification (Merge Complete; Your PDFs have been merged and saved to the desktop.) # Save as "Merge PDFs". To use: * Select multiple PDFs. * Option-click. * Select "Merge PDFs". {{Todo|Can I have this save the merged PDF to the source folder?}} {{Todo|Can I rename it to have proper Unix datetime stamp?}} === What if the file already exists? === With the above workflow, the following filenames are created, in this order: # <code>Merged_2018-4-7.pdf</code> # <code>Merged.pdf</code> # <code>[6-character random name].pdf</code> [[Category:Automator]] [[Category:MacOS]] [[Category:Coding]] ke5xi2onngeqw7lyteuzvxn9bvb5p5c 159 158 2018-04-07T14:04:53Z NoneTheFewer 214879 159 wikitext text/x-wiki == Merge PDFs == See history for an older, less useful version. # Open Automator. # Create a new Service workflow. # Set to: "Service receives selected PDF Files in Finder.app" # Add the following items, in this specific order: ## Run Shell Script (more below) ## Display Notification (Merge Complete; Your PDFs have been merged.) # Save as "Merge PDFs". The shell script: <source lang="bash">cmd='"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" -o' DATE=`date '+%Y%m%d_%H%M%S'` pdfs="" for f in "$@" do pdfs="${pdfs} \"$f\"" BASEDIR=$(dirname "$f") done cmd="${cmd} $BASEDIR/Merged_${DATE}.pdf $pdfs" eval "$cmd"</source> To use: * Select multiple PDFs. * Option-click. * Select "Merge PDFs". [[Category:Automator]] [[Category:MacOS]] [[Category:Coding]] [[Category:Shell Script]] nct3z5rdih6u38445esooo28zpo255p 174 159 2018-04-18T17:50:04Z NoneTheFewer 214879 174 wikitext text/x-wiki == Merge PDFs == See history for an older, less useful version of this. # Open Automator. # Create a new Service workflow. # Set to: "Service receives selected PDF Files in Finder.app" # Add the following items, in this specific order: ## Run Shell Script (more below) ## Display Notification (Merge Complete; Your PDFs have been merged.) # Save as "Merge PDFs". The shell script: <source lang="bash">cmd='"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" -o' DATE=`date '+%Y%m%d_%H%M%S'` pdfs="" for f in "$@" do pdfs="${pdfs} \"$f\"" BASEDIR=$(dirname "$f") done cmd="${cmd} $BASEDIR/Merged_${DATE}.pdf $pdfs" eval "$cmd"</source> To use: * Select multiple PDFs. * Option-click. * Select "Merge PDFs". == Extract text from PDFs == Before you begin, run this: <code>brew install xpdf</code> # Open Automator. # Create a new Service workflow. # Set to: "Service receives selected PDF Files in Finder.app" # Add the following items, in this specific order: ## Run Shell Script (more below) ## Display Notification (Extraction Complete; Text has been extracted from your PDFs.) # Save as "Merge PDFs". The shell script: <source lang="bash">cmd='/usr/local/bin/pdftotext' echo "x$@x" for f in "$@" do tmd="${cmd} \"$f\"" eval $tmd done </source> To use: * Select a PDF, or multiple PDFs. * Option-click. * Select "Extract text from PDF(s)". [[Category:Automator]] [[Category:MacOS]] [[Category:Coding]] [[Category:Shell Script]] qoouk3qgaf816hdkbf4yxl04mpokthm 193 174 2018-06-24T15:53:51Z NoneTheFewer 214879 193 wikitext text/x-wiki == Merge PDFs == See history for an older, less useful version of this. # Open Automator. # Create a new Service workflow. # Set to: "Service receives selected PDF Files in Finder.app" # Add the following items, in this specific order: ## Run Shell Script (more below) ## Display Notification (Merge Complete; Your PDFs have been merged.) # Save as "Merge PDFs". The shell script: <source lang="bash">cmd='"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" -o' DATE=`date '+%Y%m%d_%H%M%S'` pdfs="" for f in "$@" do pdfs="${pdfs} \"$f\"" BASEDIR=$(dirname "$f") done cmd="${cmd} $BASEDIR/Merged_${DATE}.pdf $pdfs" eval "$cmd"</source> To use: * Select multiple PDFs. * Option-click. * Select "Merge PDFs". == Extract text from PDFs == Before you begin, run this: <code>brew install xpdf</code> # Open Automator. # Create a new Service workflow. # Set to: "Service receives selected PDF Files in Finder.app" # Add the following items, in this specific order: ## Run Shell Script (more below) ## Display Notification (Extraction Complete; Text has been extracted from your PDFs.) # Save as "OCR PDFs". The shell script: <source lang="bash">cmd='/usr/local/bin/pdftotext' cd ~/Documents for f in "$@" do tmd="${cmd} \"$f\"" eval $tmd done </source> To use: * Select a PDF, or multiple PDFs. * Option-click. * Select "Extract text from PDF(s)". [[Category:Automator]] [[Category:MacOS]] [[Category:Coding]] [[Category:Shell Script]] r37lj8aoezue3d7q454rx9xp5bfnyqu Bash 0 87 90 2018-03-04T21:44:26Z NoneTheFewer 214879 Created page with "== Resources == * [https://misc.flogisoft.com/bash/tip_colors_and_formatting Bash tips: Colors and formatting (ANSI/VT100 Control sequences)] == Prompt == <source lang="bas..." 90 wikitext text/x-wiki == Resources == * [https://misc.flogisoft.com/bash/tip_colors_and_formatting Bash tips: Colors and formatting (ANSI/VT100 Control sequences)] == Prompt == <source lang="bash">export PS1="\[\e[32m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]\[\e[31m\]@\[\e[m\]\[\e[31m\]\h\[\e[m\] \[\e[35m\]\W\[\e[m\]\[\e[32m\]]\[\e[m\]\[\e[32m\]#\[\e[m\] "</source> creates <code>'''<font color="green">[</font><font color="#C00">root@splunksh-vm-prod</font> <font color="red">~</font><font color="green">]#</font>'''</code> == Commands with color == * <code>a</code>: Don't ignore directories that start with a period. * <code>F</code>: Append indicator (one of <code>*/=>@|</code>) to entries. * <code>G</code>: In a long listing, don't print group names. * <code>l</code>: Use a long listing format (similar to <code>dir</code> on Windows). * <code>p</code>: Append <code>/</code> indicator to directories. <source lang="bash"> alias ls="ls -aF" alias dir="ls -GplaF" alias grep="grep --color" </source> == nano Syntax Highlighting == <code>nano</code> doesn't come with highlighting on macOS. Source links: * https://stackoverflow.com/questions/9642617/nano-syntax-highlighting-in-mac-os-x-10-7-lion * https://github.com/scopatz/nanorc Steps: * Download a .zip file of the repo [https://github.com/scopatz/nanorc here]. * Extract all files from the .zip file. * In Terminal, run: <source lang="bash"> mkdir /usr/local/share/nano mv ~/Downloads/nanorc-master/*.nanorc /usr/local/share/nano/ nano ~/.nanorc </source> * Add a line like this, for whichever language you want:<br /><code>include "/usr/local/share/nano/python.nanorc"</code> * Save your file. * Quit out of Terminal and reopen to use the shininess. Note: Apparently nano for the Mac doesn't recognize the <code>header</code> keyword on line 4 of the .nanorc files. You'll have to comment that out with a #. (For more nerdy shit on that, go [https://github.com/serialhex/nano-highlight/issues/17 here].) [[Category:Linux]] [[Category:Skinning]] r2es0z8kzhc3nipbfewa62hws8atg0d 175 90 2018-04-18T22:11:23Z NoneTheFewer 214879 175 wikitext text/x-wiki == Resources == * [https://misc.flogisoft.com/bash/tip_colors_and_formatting Bash tips: Colors and formatting (ANSI/VT100 Control sequences)] == Prompt == <source lang="bash">export PS1="\[\e[32m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]\[\e[31m\]@\[\e[m\]\[\e[31m\]\h\[\e[m\] \[\e[35m\]\W\[\e[m\]\[\e[32m\]]\[\e[m\]\[\e[32m\]#\[\e[m\] "</source> creates <code>'''<font color="green">[</font><font color="#C00">root@splunksh-vm-prod</font> <font color="red">~</font><font color="green">]#</font>'''</code> == Commands with color == * <code>a</code>: Don't ignore directories that start with a period. * <code>F</code>: Append indicator (one of <code>*/=>@|</code>) to entries. * <code>G</code>: In a long listing, don't print group names. * <code>l</code>: Use a long listing format (similar to <code>dir</code> on Windows). * <code>p</code>: Append <code>/</code> indicator to directories. <source lang="bash"> alias ls="ls -aF" alias dir="ls -GplaF" alias grep="grep --color" </source> == nano Syntax Highlighting == <code>nano</code> doesn't come with highlighting on macOS. Source links: * https://stackoverflow.com/questions/9642617/nano-syntax-highlighting-in-mac-os-x-10-7-lion * https://github.com/scopatz/nanorc Steps: * Download a .zip file of the repo [https://github.com/scopatz/nanorc here]. * Extract all files from the .zip file. * In Terminal, run: <source lang="bash"> mkdir /usr/local/share/nano mv ~/Downloads/nanorc-master/*.nanorc /usr/local/share/nano/ nano ~/.nanorc </source> * Add a line like this, for whichever language you want:<br /><code>include "/usr/local/share/nano/python.nanorc"</code> * Save your file. * Quit out of Terminal and reopen to use the shininess. Note: Apparently nano for the Mac doesn't recognize the <code>header</code> keyword on line 4 of the .nanorc files. You'll have to comment that out with a #. (For more nerdy shit on that, go [https://github.com/serialhex/nano-highlight/issues/17 here].) == Program differences == === <code>stat</code> === {|class="article-table" ! Purpose ! [https://ss64.com/bash/stat.html Unix] ! [https://ss64.com/osx/stat.html BSD] |- | octal permissions of file | <code>stat -c "%a" filename</code> | <code>stat -f "%A" filename</code> |- | user:group of file | <code>stat -c %u%g filename</code> | <code>stat -f %Su:%Sg filename</code> |} [[Category:Linux]] [[Category:Skinning]] bvk6ghtnb6h2nvbu30mgt1on9t89yzx 192 175 2018-06-19T14:10:54Z NoneTheFewer 214879 192 wikitext text/x-wiki == Resources == * [https://misc.flogisoft.com/bash/tip_colors_and_formatting Bash tips: Colors and formatting (ANSI/VT100 Control sequences)] == Prompt == <source lang="bash">export PS1="\[\e[32m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]\[\e[31m\]@\[\e[m\]\[\e[31m\]\h\[\e[m\] \[\e[35m\]\W\[\e[m\]\[\e[32m\]]\[\e[m\]\[\e[32m\]#\[\e[m\] "</source> creates <code>'''<font color="green">[</font><font color="#C00">root@splunksh-vm-prod</font> <font color="red">~</font><font color="green">]#</font>'''</code> == Commands with color == * <code>a</code>: Don't ignore directories that start with a period. * <code>F</code>: Append indicator (one of <code>*/=>@|</code>) to entries. * <code>G</code>: In a long listing, don't print group names. * <code>l</code>: Use a long listing format (similar to <code>dir</code> on Windows). * <code>p</code>: Append <code>/</code> indicator to directories. <source lang="bash"> alias ls="ls -aF" alias dir="ls -GplaF" alias grep="grep --color" </source> == nano Syntax Highlighting == <code>nano</code> doesn't come with highlighting on macOS. Source links: * https://stackoverflow.com/questions/9642617/nano-syntax-highlighting-in-mac-os-x-10-7-lion * https://github.com/scopatz/nanorc Steps: * Download a .zip file of the repo [https://github.com/scopatz/nanorc here]. * Extract all files from the .zip file. * In Terminal, run: <source lang="bash"> mkdir /usr/local/share/nano mv ~/Downloads/nanorc-master/*.nanorc /usr/local/share/nano/ </source> * Open the nano settings file: <source lang="bash"> nano ~/.nanorc </source> * Add a line like this, for whichever language you want:<br /><code>include "/usr/local/share/nano/python.nanorc"</code> * Save your file. * Quit out of Terminal and reopen to use the shininess. Note: Apparently nano for the Mac doesn't recognize the <code>header</code> keyword on line 4 of the .nanorc files. You'll have to comment that out with a #. (For more nerdy shit on that, go [https://github.com/serialhex/nano-highlight/issues/17 here].) == Program differences == === <code>stat</code> === {|class="article-table" ! Purpose ! [https://ss64.com/bash/stat.html Unix] ! [https://ss64.com/osx/stat.html BSD] |- | octal permissions of file | <code>stat -c "%a" filename</code> | <code>stat -f "%A" filename</code> |- | user:group of file | <code>stat -c %u%g filename</code> | <code>stat -f %Su:%Sg filename</code> |} [[Category:Linux]] [[Category:Skinning]] kzr6jxuq1xi0mdb2w3x1e184i29s2b3 CSS 0 88 91 2018-03-04T21:47:13Z NoneTheFewer 214879 Created page with " == Link to Google font == Step 1: Find the font [https://fonts.google.com/ here]. Step 2: Use code like this: <source lang="css"> @import url('https://fonts.googleapis.com..." 91 wikitext text/x-wiki == Link to Google font == Step 1: Find the font [https://fonts.google.com/ here]. Step 2: Use code like this: <source lang="css"> @import url('https://fonts.googleapis.com/css?family=Schoolbell'); div[data-user-id="25073877"] * { font-family: "Schoolbell", "Comic Sans MS" !important; } </source> The <code>@import</code> directive must be the ''first'' line of the code. === Stylish === Stylish doesn't appear to support @import directives. So instead: <source lang="css"> @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff'); } div#mw-content-text p { font-family: "Open Sans", "Times New Roman", sans-serif !important; } </source> == Replace an image with another image == For this snippet, imagine the image itself is 16x16px. <source lang="css"> a[href="/logout"] { background-image: url('https://emojipedia-us.s3.amazonaws.com/cache/03/d3/03d3499555d8a520d7bb6008e066665d.png') !important; background-repeat: no-repeat !important; width: 16px !important; height: 16px !important; padding-left: 20px !important; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; background-size: 16px !important; } </source> == Replace text with text content == <source lang="css"> a.flag { visibility: hidden; } a.flag:before { visibility: visible; content: "\1F3C1"; padding: 0 0 0 4px !important; } </source> == Replace text with an image == <source lang="css"> td > a[id$="_lnkReports"], td > a[id$="_lnkReportsSpa"], td > div > a[id$="_lnkReportsSpa"] { background-image: url("http://emojipedia-us.s3.amazonaws.com/cache/5c/46/5c462186a6a3a2d6e9aaee30c595a92a.png") !important; display: block !important; background-size: 16px !important; background-repeat: no-repeat !important; width: 16px !important; height: 16px !important; text-indent: -9999px !important; box-sizing: border-box !important; float: left !important; } </source> == "Outline" for text == HTML: <source lang="html4strict"> <div class="outthis"> This text should have a stroke in some browsers </div> </source> CSS: <source lang="css"> .outthis { color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } </source> [[Category:Skinning]] [[Category:Coding]] qui2xehwgym2qt88zlpk5dydlxexv3k 140 91 2018-03-16T03:13:59Z NoneTheFewer 214879 140 wikitext text/x-wiki == Link to Google font == Step 1: Find the font [https://fonts.google.com/ here]. Step 2: Use code like this: <source lang="css"> @import url('https://fonts.googleapis.com/css?family=Schoolbell'); div[data-user-id="25073877"] * { font-family: "Schoolbell", "Comic Sans MS" !important; } </source> The <code>@import</code> directive must be the ''first'' line of the code. === Stylish === Stylish doesn't appear to support @import directives. So instead: <source lang="css"> @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff'); } div#mw-content-text p { font-family: "Open Sans", "Times New Roman", sans-serif !important; } </source> {{Todo|I can't explain why this works, but the same thing with a different font doesn't always work.}} == Replace an image with another image == For this snippet, imagine the image itself is 16x16px. <source lang="css"> a[href="/logout"] { background-image: url('https://emojipedia-us.s3.amazonaws.com/cache/03/d3/03d3499555d8a520d7bb6008e066665d.png') !important; background-repeat: no-repeat !important; width: 16px !important; height: 16px !important; padding-left: 20px !important; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; background-size: 16px !important; } </source> == Replace text with text content == <source lang="css"> a.flag { visibility: hidden; } a.flag:before { visibility: visible; content: "\1F3C1"; padding: 0 0 0 4px !important; } </source> == Replace text with an image == <source lang="css"> td > a[id$="_lnkReports"], td > a[id$="_lnkReportsSpa"], td > div > a[id$="_lnkReportsSpa"] { background-image: url("http://emojipedia-us.s3.amazonaws.com/cache/5c/46/5c462186a6a3a2d6e9aaee30c595a92a.png") !important; display: block !important; background-size: 16px !important; background-repeat: no-repeat !important; width: 16px !important; height: 16px !important; text-indent: -9999px !important; box-sizing: border-box !important; float: left !important; } </source> == "Outline" for text == HTML: <source lang="html4strict"> <div class="outthis"> This text should have a stroke in some browsers </div> </source> CSS: <source lang="css"> .outthis { color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } </source> [[Category:Skinning]] [[Category:Coding]] kte84iz1jg3nv9xlj09wz8wl51zw2vf 179 140 2018-04-21T20:37:36Z NoneTheFewer 214879 179 wikitext text/x-wiki == Link to Google font == Step 1: Find the font [https://fonts.google.com/ here]. Step 2: Use code like this: <source lang="css"> @import url('https://fonts.googleapis.com/css?family=Schoolbell'); div[data-user-id="25073877"] * { font-family: "Schoolbell", "Comic Sans MS" !important; } </source> The <code>@import</code> directive must be the ''first'' line of the code. === Stylish === Stylish doesn't appear to support @import directives. So instead: <source lang="css"> @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff'); } div#mw-content-text p { font-family: "Open Sans", "Times New Roman", sans-serif !important; } </source> {{Todo|I can't explain why this works, but the same thing with a different font doesn't always work.}} == Replace an image with another image == For this snippet, imagine the image itself is 16x16px. <source lang="css"> a[href="/logout"] { background-image: url('https://emojipedia-us.s3.amazonaws.com/cache/03/d3/03d3499555d8a520d7bb6008e066665d.png') !important; background-repeat: no-repeat !important; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; width: 16px !important; height: 16px !important; padding-left: 16px !important; background-size: 16px !important; } </source> == Replace text with text content == <source lang="css"> a.flag { visibility: hidden; } a.flag:before { visibility: visible; content: "\1F3C1"; padding: 0 0 0 4px !important; } </source> == Replace text with an image == <source lang="css"> td > a[id$="_lnkReports"], td > a[id$="_lnkReportsSpa"], td > div > a[id$="_lnkReportsSpa"] { background-image: url("http://emojipedia-us.s3.amazonaws.com/cache/5c/46/5c462186a6a3a2d6e9aaee30c595a92a.png") !important; display: block !important; background-repeat: no-repeat !important; text-indent: -9999px !important; box-sizing: border-box !important; float: left !important; background-size: 16px !important; width: 16px !important; height: 16px !important; } </source> == "Outline" for text == HTML: <source lang="html4strict"> <div class="outthis"> This text should have a stroke in some browsers </div> </source> CSS: <source lang="css"> .outthis { color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } </source> [[Category:Skinning]] [[Category:Coding]] nlkefhf02ng2zxh29adm44k6wlh6pek 188 179 2018-05-18T20:35:19Z NoneTheFewer 214879 188 wikitext text/x-wiki == Link to Google font == Step 1: Find the font [https://fonts.google.com/ here]. Step 2: Use code like this: <source lang="css"> @import url('https://fonts.googleapis.com/css?family=Schoolbell'); div[data-user-id="25073877"] * { font-family: "Schoolbell", "Comic Sans MS" !important; } </source> The <code>@import</code> directive must be the ''first'' line of the code. === Stylish === Stylish doesn't appear to support @import directives. So instead: * Click "Select this font". * For the "# Family Selected", click that. * Click Embed. * Copy the link href attribute. * Copy the CSS out of that page. <source lang="css"> @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff'); } div#mw-content-text p { font-family: "Open Sans", "Times New Roman", sans-serif !important; } </source> {{Todo|I can't explain why this works, but the same thing with a different font doesn't always work.}} == Replace an image with another image == For this snippet, imagine the image itself is 16x16px. <source lang="css"> a[href="/logout"] { background-image: url('https://emojipedia-us.s3.amazonaws.com/cache/03/d3/03d3499555d8a520d7bb6008e066665d.png') !important; background-repeat: no-repeat !important; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; width: 16px !important; height: 16px !important; padding-left: 16px !important; background-size: 16px !important; } </source> == Replace text with text content == <source lang="css"> a.flag { visibility: hidden; } a.flag:before { visibility: visible; content: "\1F3C1"; padding: 0 0 0 4px !important; } </source> == Replace text with an image == <source lang="css"> td > a[id$="_lnkReports"], td > a[id$="_lnkReportsSpa"], td > div > a[id$="_lnkReportsSpa"] { background-image: url("http://emojipedia-us.s3.amazonaws.com/cache/5c/46/5c462186a6a3a2d6e9aaee30c595a92a.png") !important; display: block !important; background-repeat: no-repeat !important; text-indent: -9999px !important; box-sizing: border-box !important; float: left !important; background-size: 16px !important; width: 16px !important; height: 16px !important; } </source> == "Outline" for text == HTML: <source lang="html4strict"> <div class="outthis"> This text should have a stroke in some browsers </div> </source> CSS: <source lang="css"> .outthis { color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } </source> [[Category:Skinning]] [[Category:Coding]] nhiglae73vakhi8n692hrm9q92fved6 Calibre 0 89 92 2018-03-04T21:48:15Z NoneTheFewer 214879 Created page with "== Themes == === Location === Go to Preferences → Advanced → Miscellaneous and click "Open calibre configuration directory". === Current location === <code>~/L..." 92 wikitext text/x-wiki == Themes == === Location === Go to Preferences → Advanced → Miscellaneous and click "Open calibre configuration directory". === Current location === <code>~/Library/Preferences/calibre/resources/images</code> == Tagging == === Star Trek === ==== Fiction ==== * All books: Fiction, Science Fiction, Media Tie-In, Star Trek Fiction, Star Trek * Specifics: ** Star Trek The Original Series ** Star Trek The Next Generation ** Star Trek Starfleet Academy ** Star Trek Shatnerverse ==== Nonfiction ==== * All books: Nonfiction, Media Tie-In, Star Trek * Others: ** Expose ** Reference === Fiction === * Horror: just Horror == General cleanup == * remove "General" tag * search on: tags:; * remove tags related to languages [[Category:Organization]] tlw1s4fwr0nnui9gqedh18wrnwl0u6k Datetime 0 100 104 2018-03-05T16:38:45Z NoneTheFewer 214879 Created page with "I hate programming with datetimes. == Converting from int/float to datetime object == It depends on the timestamp item, specifically how long it is. For each thousands group..." 104 wikitext text/x-wiki I hate programming with datetimes. == Converting from int/float to datetime object == It depends on the timestamp item, specifically how long it is. For each thousands grouping it is past 10 digits, divide the original item by 1,000. === Python === <source lang="python"> from datetime import datetime ts = 1519680666 date = datetime.fromtimestamp(ts) </source> === Excel === Assuming the data is in cell A1: <pre>=(A1 / 24 / 60 / 60) + DATE(1970, 1, 1)</pre> [[Category:Coding]] kqnilq98hu5c21c8fw7m9d845yy50mh 116 104 2018-03-07T13:38:29Z NoneTheFewer 214879 116 wikitext text/x-wiki I hate programming with datetimes. == General resources == * [http://strftime.org/ Python's <code>strftime</code> directives] == Converting from int/float to datetime object == It depends on the timestamp item, specifically how long it is. For each thousands grouping it is past 10 digits, divide the original item by 1,000. === Python === <source lang="python"> from datetime import datetime ts = 1519680666 date = datetime.fromtimestamp(ts) </source> === Excel === Assuming the data is in cell A1: <pre>=(A1 / 24 / 60 / 60) + DATE(1970, 1, 1)</pre> [[Category:Coding]] [[Category:Python]] [[Category:Sheets]] jh696fpypfq8c7wfxeqcvwhqd8u6vsm Dwarfish 0 105 117 2018-03-08T01:56:20Z NoneTheFewer 214879 Created page with "From Discworld. {|class="article-table" ! Term/Phrase ! Meaning ! Source |- | K’ez’rek d’b’du | Go Around the Other Side of the Mountain | Maskerade |- | Gr'duzk | Go..." 117 wikitext text/x-wiki From Discworld. {|class="article-table" ! Term/Phrase ! Meaning ! Source |- | K’ez’rek d’b’du | Go Around the Other Side of the Mountain | Maskerade |- | Gr'duzk | Good day | Guards! Guards! |- | kruk | dwarf mining law | The Fifth Element |- | “D’kraha?” | | The Fifth Elephant |- | krazak | | The Fifth Elephant |- | G'ardrgh | | The Fifth Elephant |- | “B’dan? K’raa! D’kraga ‘ha’ak’!” | | The Fifth Elephant |- | “Krz? Gr’dazak yad?” | | The Fifth Elephant |- | “Ta’grdzk?” | | The Fifth Elephant |- | Y'grad | | The Fifth Element |- | drudak'ak | “…‘above ground’… ‘they negatively’…” / "They do not get out in the fresh air enough" | The Fifth Element |- | j'kargra | | The Fifth Element |- | k'zakra | a rite | The Fifth Element |- | h'ragna | | The Fifth Element |- | ha'lk | | The Fifth Element |- | g'rakha | | The Fifth Element |- | “Gr’duzk! Gr’duzk! aaK’zt ezem ke bur’k tze tzim?” | “Good day! Good day! What is all of this that is going on here (in this place )?” | Guards! Guards! |- | J'uk | Listen | Guards! Guards! |- | “J’uk, ydtruz-t’rud-eztuza, hudr’zd dezek drez’huk, huzu-kruk’t b’tduz g’ke’k me’ek b’tduz t’ be’tk kce’drutk ke’hkt’d. aaDb’thuk?” | “Listen, sunshine [lit: “the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern”] I don’t want to have to give anyone a smacking, so if you play B’tduz 2A popular dwarfish game which consists of standing a few feet apart and throwing large rocks at one another’s head. 3Lit: “All correctly beamed and propped?” with me, I’ll play B’tduz with you. Okay?” | Guards! Guards! |- | “G’hruk, t’uk.” | “Evening, all.” (Lit: “Felicitations to all present at the closing of the day.”) | Guards! Guards! |- | dezka-knick | mine supervisor; king | Guards! Guards! |} 4zt5jz4wnk18qcakgajx3gwdstyc2bq 184 117 2018-05-10T17:58:42Z NoneTheFewer 214879 184 wikitext text/x-wiki From Discworld. {|class="article-table" ! Term/Phrase ! Meaning ! Source |- | K’ez’rek d’b’du | "Go Around the Other Side of the Mountain" | Maskerade |- | Gr'duzk | "Good day" | Guards! Guards! |- | kruk | dwarf mining law | The Fifth Element |- | “D’kraha?” | | The Fifth Elephant |- | krazak | | The Fifth Elephant |- | G'ardrgh | | The Fifth Elephant |- | “B’dan? K’raa! D’kraga ‘ha’ak’!” | | The Fifth Elephant |- | “Krz? Gr’dazak yad?” | | The Fifth Elephant |- | “Ta’grdzk?” | | The Fifth Elephant |- | Y'grad | | The Fifth Element |- | drudak'ak | “…‘above ground’… ‘they negatively’…” / "They do not get out in the fresh air enough" | The Fifth Element |- | j'kargra | | The Fifth Element |- | k'zakra | a rite | The Fifth Element |- | h'ragna | | The Fifth Element |- | ha'lk | | The Fifth Element |- | g'rakha | | The Fifth Element |- | “Gr’duzk! Gr’duzk! aaK’zt ezem ke bur’k tze tzim?” | “Good day! Good day! What is all of this that is going on here (in this place)?” | Guards! Guards! |- | J'uk | Listen | Guards! Guards! |- | B’tduz | a popular dwarfish game which consists of standing a few feet apart and throwing large rocks at one another’s head | Guards! Guards! |- | “J’uk, ydtruz-t’rud-eztuza, hudr’zd dezek drez’huk, huzu-kruk’t b’tduz g’ke’k me’ek b’tduz t’ be’tk kce’drutk ke’hkt’d. aaDb’thuk?” | “Listen, sunshine [lit: “the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern”] I don’t want to have to give anyone a smacking, so if you play B’tduz with me, I’ll play B’tduz with you. Okay?” | Guards! Guards! |- | "aaDb'thuk?" | "Okay?" (Lit: "All correctly beamed and propped?") | Guards! Guards! |- | “G’hruk, t’uk.” | “Evening, all.” (Lit: “Felicitations to all present at the closing of the day.”) | Guards! Guards! |- | dezka-knik | mine supervisor; king | Guards! Guards! |- | d'rkza | insulting term for dwarfs who have spent too much time aboveground | Thud! |} ngfe3oiex7q5w5rd0fc8pokori0hj0p 185 184 2018-05-10T18:42:58Z NoneTheFewer 214879 185 wikitext text/x-wiki From Discworld. {|class="article-table" ! Term/Phrase ! Meaning ! Source |- | "aaDb'thuk?" | "Okay?" (Lit: "All correctly beamed and propped?") | Guards! Guards! |- | aargk | speak | Thud! |- | aork | say (command form of "speak") | Thud! |- | "B'dan? K'raa! D'kraga 'ha'ak'!” | | The Fifth Elephant |- | B’tduz | a popular dwarfish game which consists of standing a few feet apart and throwing large rocks at one another’s head | Guards! Guards! |- | B'zgda-hiara | insulting term: "lawn ornament" | Wyrd Sisters; Moving Pictures; Feet of Clay; The Fifth Elephant; The Truth; Thud! |- | bad'dhakz | yeast bowl | Feet of Clay |- | bura'zak-ka | town hall | Feet of Clay |- | "D'kraha?" | | The Fifth Elephant |- | d'rkza | insulting term for dwarfs who have spent too much time aboveground | Thud! |- | drudak'ak | dwarfs who "do not get out in the fresh air enough"; very ''traditional'' dwarfs | The Fifth Element |- | dezka-knik | mine supervisor; king | Guards! Guards! |- | G'ardrgh | | The Fifth Elephant |- | Gr'duzk | "Good day" | Guards! Guards! |- | "Heda" | "what ho" | Wyrd Sisters |- | j'kargra | | The Fifth Element |- | K'ez'rek d'b'duz | "Go Around the Other Side of the Mountain" | Maskerade |- | krazak | | The Fifth Elephant |- | kruk | dwarf mining law | The Fifth Element |- | "Krz? Gr'dazak yad?" | | The Fifth Elephant |- | "T'dr'duzk b'hazg t't!" | "Today is a good day for someone else to die!" | Feet of Clay |- | 'Ta'grdzk?' | | The Fifth Elephant |- | Y'grad | a rite during which young dwarfs confess to being dwarfs | The Fifth Element |- | "Ah, h’druk g’har dWatch, Sh’rt’azs! H’h Angua tConstable… Angua g’har, b’hk bargr’a Sh’rt’azs Kad’k…" | "Welcome, Corporal Smallbottom! This is Constable Angua… Angua, show Smallbottom how well you’re learning dwarfish…" | Feet of Clay |- | p'akga a p'akaga-ad | the thing and the whole of the thing | Thud! |- | "Grr’dukk d’buzh’drak…" | "small delightful mining tool of a feminine nature" | Feet of Clay |- | Sh'rt'azs | ...small butt | Feet of Clay |- | k'zakra | a rite | The Fifth Element |- | h'ragna | | The Fifth Element |- | ha'lk | | The Fifth Element |- | g'rakha | | The Fifth Element |- | “Gr’duzk! Gr’duzk! aaK’zt ezem ke bur’k tze tzim?” | “Good day! Good day! What is all of this that is going on here (in this place)?” | Guards! Guards! |- | J'uk | Listen | Guards! Guards! |- | “J’uk, ydtruz-t’rud-eztuza, hudr’zd dezek drez’huk, huzu-kruk’t b’tduz g’ke’k me’ek b’tduz t’ be’tk kce’drutk ke’hkt’d. aaDb’thuk?” | “Listen, sunshine [lit: “the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern”] I don’t want to have to give anyone a smacking, so if you play B’tduz with me, I’ll play B’tduz with you. Okay?” | Guards! Guards! |- | "ydtruz-t’rud-eztuza" | "the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern" | Guards! Guards! |- | “G’hruk, t’uk.” | “Evening, all.” (Lit: “Felicitations to all present at the closing of the day.”) | Guards! Guards! |- | t'uk | all; "all present" | Guards! Guards! |- | G'hruk | felicitations at the closing of the day | Guards! Guards! |- | Kzad-bhat | Carrot's name [lit: "Headbanger"] | Thud! |- | zadkrdga' | melting pot; investigator or inquisitor; "One who finds the pure ore of truth in the dross of confusion" | Thud! |- | Tra'ka | something like "nothing" or "a mess" | Thud! |} m6pv3l4b62pc0v5ieo4nr8m9010lo7b 186 185 2018-05-10T18:43:54Z NoneTheFewer 214879 186 wikitext text/x-wiki From Discworld. {|class="article-table" ! Term/Phrase ! Meaning ! Source |- | "aaDb'thuk?" | "Okay?" (Lit: "All correctly beamed and propped?") | Guards! Guards! |- | aargk | speak | Thud! |- | aork | say (command form of "speak") | Thud! |- | "B'dan? K'raa! D'kraga 'ha'ak'!” | | The Fifth Elephant |- | B’tduz | a popular dwarfish game which consists of standing a few feet apart and throwing large rocks at one another’s head | Guards! Guards! |- | B'zgda-hiara | insulting term: "lawn ornament" | Wyrd Sisters; Moving Pictures; Feet of Clay; The Fifth Elephant; The Truth; Thud! |- | bad'dhakz | yeast bowl | Feet of Clay |- | bura'zak-ka | town hall | Feet of Clay |- | "D'kraha?" | | The Fifth Elephant |- | d'rkza | insulting term for dwarfs who have spent too much time aboveground | Thud! |- | drudak'ak | dwarfs who "do not get out in the fresh air enough"; very ''traditional'' dwarfs | The Fifth Element |- | dezka-knik | mine supervisor; king | Guards! Guards! |- | G'ardrgh | | The Fifth Elephant |- | Gr'duzk | "Good day" | Guards! Guards! |- | "Heda" | "what ho" | Wyrd Sisters |- | j'kargra | | The Fifth Element |- | K'ez'rek d'b'duz | "Go Around the Other Side of the Mountain" | Maskerade |- | krazak | | The Fifth Elephant |- | kruk | dwarf mining law | The Fifth Element |- | "Krz? Gr'dazak yad?" | | The Fifth Elephant |- | "T'dr'duzk b'hazg t't!" | "Today is a good day for someone else to die!" | Feet of Clay |- | 'Ta'grdzk?' | | The Fifth Elephant |- | Y'grad | a rite during which young dwarfs confess to being dwarfs | The Fifth Element |- | "Ah, h’druk g’har dWatch, Sh’rt’azs! H’h Angua tConstable… Angua g’har, b’hk bargr’a Sh’rt’azs Kad’k…" | "Welcome, Corporal Smallbottom! This is Constable Angua… Angua, show Smallbottom how well you’re learning dwarfish…" | Feet of Clay |- | p'akga a p'akaga-ad | the thing and the whole of the thing | Thud! |- | "Grr’dukk d’buzh’drak…" | "small delightful mining tool of a feminine nature" | Feet of Clay |- | Sh'rt'azs | ...small butt | Feet of Clay |- | k'zakra | a rite | The Fifth Element |- | h'ragna | | The Fifth Element |- | ha'lk | | The Fifth Element |- | g'rakha | | The Fifth Element |- | “Gr’duzk! Gr’duzk! aaK’zt ezem ke bur’k tze tzim?” | “Good day! Good day! What is all of this that is going on here (in this place)?” | Guards! Guards! |- | J'uk | Listen | Guards! Guards! |- | “J’uk, ydtruz-t’rud-eztuza, hudr’zd dezek drez’huk, huzu-kruk’t b’tduz g’ke’k me’ek b’tduz t’ be’tk kce’drutk ke’hkt’d. aaDb’thuk?” | “Listen, sunshine [lit: “the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern”] I don’t want to have to give anyone a smacking, so if you play B’tduz with me, I’ll play B’tduz with you. Okay?” | Guards! Guards! |- | "ydtruz-t’rud-eztuza" | "the stare of the great hot eye in the sky whose fiery gaze penetrates the mouth of the cavern" | Guards! Guards! |- | “G’hruk, t’uk.” | “Evening, all.” (Lit: “Felicitations to all present at the closing of the day.”) | Guards! Guards! |- | t'uk | all; "all present" | Guards! Guards! |- | G'hruk | felicitations at the closing of the day | Guards! Guards! |- | Kzad-bhat | Carrot's name [lit: "Headbanger"] | Thud! |- | zadkrdga' | melting pot; investigator or inquisitor; "One who finds the pure ore of truth in the dross of confusion" | Thud! |- | Tra'ka | something like "nothing" or "a mess" | Thud! |} https://wiki.lspace.org/mediawiki/Dwarfish_phrases http://www.thediscworld.de/index.php/Kategorie:Zwergisch [[Category:Vocabulary]] sj6z70s3iyeec7wr3zq7ar3n31bevt7 Easter eggs 0 126 161 2018-04-13T13:04:43Z NoneTheFewer 214879 Created page with "== Splunk == <source lang="text">index=_* OR index=* | head 1 | eval fish="><((*>" | eval fishies=mvappend(fish,fish) | eval fishies=mvappend(fishies,fishies) | eval fishies=..." 161 wikitext text/x-wiki == Splunk == <source lang="text">index=_* OR index=* | head 1 | eval fish="><((*>" | eval fishies=mvappend(fish,fish) | eval fishies=mvappend(fishies,fishies) | eval fishies=mvappend(fishies,fishies) | eval fishies=mvappend(fishies,fishies) | eval spawnify=fishies | mvexpand spawnify | eval fishies=mvjoin(fishies," ") | streamstats count as offset | eval offset=(offset*3) % 7 | addinfo | eval make_swim=round(info_max_time-info_search_time) | eval fishies=substr(fishies,(10*16)-(make_swim-offset+10),100+offset) | fields fishies | streamstats count | eval fishies=if(count==16,"FATAL ERROR: you have unleashed an army of fish.",fishies) | fields fishies | rename fishies as _raw | fields - _time | eval _raw=substr(_raw,0,100)</source> [[Category:Fun things]] [[Category:Splunk]] 06fkvncdhqcta1e4ch1l4kitrc6wbmv Encoding 0 90 93 2018-03-04T21:48:57Z NoneTheFewer 214879 Created page with "== Top bit == ''This'' close to memorizing it! <source lang="python"># -*- coding: utf-8 -*-</source> == Errors == Example error: <pre>UnicodeEncodeError: 'ascii' codec c..." 93 wikitext text/x-wiki == Top bit == ''This'' close to memorizing it! <source lang="python"># -*- coding: utf-8 -*-</source> == Errors == Example error: <pre>UnicodeEncodeError: 'ascii' codec can't encode character u'\u03b2' in position 3: ordinal not in range(128)</pre> To fix: <source lang="python">item.encode("utf-8")</source> [[Category:Coding]] mldunsvdwms0bl7dsucjbd2hzblnv9b 141 93 2018-03-16T14:28:00Z NoneTheFewer 214879 141 wikitext text/x-wiki == Top bit == ''This'' close to memorizing it! <source lang="python"># -*- coding: utf-8 -*-</source> == Errors == Example error: <pre>UnicodeEncodeError: 'ascii' codec can't encode character u'\u03b2' in position 3: ordinal not in range(128)</pre> To fix: <source lang="python">item.encode("utf-8")</source> === Selenium === Trying to type special characters into an input field. Example: <code>José</code> <source lang="python">txtbox.send_keys(auth.decode("utf-8"))</source> [[Category:Coding]] 39dsanzqdzz24vswolnyc1qyxlh5yj7 Encryption 0 98 101 2018-03-05T12:56:23Z NoneTheFewer 214879 Created page with "== Symmetric encryption == ''AKA: Single Key Encryption / Shared Key Encryption'' A block cipher is a deterministic algorithm operating on fixed-length groups of bits, calle..." 101 wikitext text/x-wiki == Symmetric encryption == ''AKA: Single Key Encryption / Shared Key Encryption'' A block cipher is a deterministic algorithm operating on fixed-length groups of bits, called a block, with an unvarying transformation that is specified by a symmetric key. === Pros/cons === Symmetric keys are great for speed and bulk. However, distributing the secret key is full of strife. It's also not scalable, as you need a key for each communication pair. The formula for determining the number of keys you'll need is: <pre>N(N - 1) / 2</pre> So if you're communicating with two other people, you'd need 3 keys: <pre>3 * (3 - 1) / 2 = 3</pre> If you're communicating with three other people: <pre>4 * (4 - 1) / 2 = 6</pre> And so forth. Symmetric encryption also doesn't deal with nonrepudiation at all--as in, there's no way to provie the identity of either party in a communication. === List of algorithms === {|class="article-table" ! Name ! Type ! Description |- | DES | data encryption standard | Uses a 56-bit key with 8 bits reserved for parity. Due to its small size, this standard became outdated fairly quickly. This is used with LM. |- | 3DES | triple data encryption standard | Uses a 168-bit key. This can use up to 3 keys in a multiple-encryption method. It's better, but slower, than DES (perhaps obviously). |- | AES | advanced encryption standard | Uses a key length of 128, 192, or 256 bits. It's a replacement for DES/3DES. |- | IDEA | international data encryption algorithm | Uses a 128-bit key. This was also designed to replace DES. Used primarily in Europe. |- | Twofish | | Uses a key size up to 256 bits. |- | Blowfish | | Uses a 64-bit block size and a key from 32 to 448 bits. Replaced by AES. Blowfish is considered public domain. |- | RC | rivest cipher | Encompasses several versions from RC2 through RC6. A block cipher that uses a variable key length up to 2040 bits. RC6, the latest version, uses 128-bit blocks and 4-bit working registers, whereas RC5 uses variable block sizes (32, 64, or 128) and 2-bit working registers. |} == Asymmetric encryption == With asymmetric encryption, two keys are generated together: one is used to encrypt, and one is used to decrypt. bmrxuu39oj9ljztrtmof9e6rnw8isv2 102 101 2018-03-05T12:57:38Z NoneTheFewer 214879 Adding categories 102 wikitext text/x-wiki == Symmetric encryption == ''AKA: Single Key Encryption / Shared Key Encryption'' A block cipher is a deterministic algorithm operating on fixed-length groups of bits, called a block, with an unvarying transformation that is specified by a symmetric key. === Pros/cons === Symmetric keys are great for speed and bulk. However, distributing the secret key is full of strife. It's also not scalable, as you need a key for each communication pair. The formula for determining the number of keys you'll need is: <pre>N(N - 1) / 2</pre> So if you're communicating with two other people, you'd need 3 keys: <pre>3 * (3 - 1) / 2 = 3</pre> If you're communicating with three other people: <pre>4 * (4 - 1) / 2 = 6</pre> And so forth. Symmetric encryption also doesn't deal with nonrepudiation at all--as in, there's no way to provie the identity of either party in a communication. === List of algorithms === {|class="article-table" ! Name ! Type ! Description |- | DES | data encryption standard | Uses a 56-bit key with 8 bits reserved for parity. Due to its small size, this standard became outdated fairly quickly. This is used with LM. |- | 3DES | triple data encryption standard | Uses a 168-bit key. This can use up to 3 keys in a multiple-encryption method. It's better, but slower, than DES (perhaps obviously). |- | AES | advanced encryption standard | Uses a key length of 128, 192, or 256 bits. It's a replacement for DES/3DES. |- | IDEA | international data encryption algorithm | Uses a 128-bit key. This was also designed to replace DES. Used primarily in Europe. |- | Twofish | | Uses a key size up to 256 bits. |- | Blowfish | | Uses a 64-bit block size and a key from 32 to 448 bits. Replaced by AES. Blowfish is considered public domain. |- | RC | rivest cipher | Encompasses several versions from RC2 through RC6. A block cipher that uses a variable key length up to 2040 bits. RC6, the latest version, uses 128-bit blocks and 4-bit working registers, whereas RC5 uses variable block sizes (32, 64, or 128) and 2-bit working registers. |} == Asymmetric encryption == With asymmetric encryption, two keys are generated together: one is used to encrypt, and one is used to decrypt. [[Category:Encryption]] lrv21kjb6at67c68qqxsmgftdvw9cte File locations 0 120 150 2018-03-31T11:52:31Z NoneTheFewer 214879 Created page with "{|class="article-table" ! Desired ! Location |- | Kindle books | <code>~/Library/Containers/com.amazon.Kindle/Data/Library/Application Support/Kindle/My Kindle Content</code> ..." 150 wikitext text/x-wiki {|class="article-table" ! Desired ! Location |- | Kindle books | <code>~/Library/Containers/com.amazon.Kindle/Data/Library/Application Support/Kindle/My Kindle Content</code> |} [[Category:Linux]] [[Category:MacOS]] fzunicx1r8udxc3rvhrzz7dxasfd22a 178 150 2018-04-21T20:34:50Z NoneTheFewer 214879 178 wikitext text/x-wiki {|class="article-table" ! Desired ! Location |- | Kindle books | <code>~/Library/Containers/com.amazon.Kindle/Data/Library/Application Support/Kindle/My Kindle Content</code> |- | Kongregate save data | <code>~/Library/Application Support/Google/Chrome/Default/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/'''$$$$$$$$'''/chat.kongregate.com</code> |- | Python installed packages | <source lang="python">$ python >>> import sys >>> sys.path</source> |- | Chrome extensions | <code>~/Library/Application Support/Google/Chrome/[Profile]/</code> |} [[Category:Linux]] [[Category:MacOS]] qwftflowsaaf8tpxgjnfvcz0g4dwaic Font sources 0 102 109 2018-03-05T17:37:05Z NoneTheFewer 214879 Created page with " == Tenable == https://cloud.tenable.com/images/tenable-glyphicons-halflings.png Rename the file to <code>.ttf</code>. [[Category:Skinning]]" 109 wikitext text/x-wiki == Tenable == https://cloud.tenable.com/images/tenable-glyphicons-halflings.png Rename the file to <code>.ttf</code>. [[Category:Skinning]] b04z7nt843bvjc2pngkgs94a8cre06g Forget Me 0 141 181 2018-04-27T13:36:13Z NoneTheFewer 214879 Created page with "SEO terms for later: * delete personal information from the internet {|class="article-table" ! Site ! Removal link ! Requires ID? |- | [https://www.truepeoplesearch.com True..." 181 wikitext text/x-wiki SEO terms for later: * delete personal information from the internet {|class="article-table" ! Site ! Removal link ! Requires ID? |- | [https://www.truepeoplesearch.com TruePeopleSearch] |style="background-color:#CFC;"| [https://www.truepeoplesearch.com/removal Removals] | |- | [https://www.familytreenow.com/ FamilyTreeNow] |style="background-color:#CFC;"| [https://www.familytreenow.com/optout Opt Out of Records] | |- | [https://pipl.com/ Pipl] |style="background-color:#FCC;"| [https://pipl.com/help/remove/ n/a] | |- | [https://whitepages.plus White Pages] | [https://whitepages.plus/remove Information Removal Request] | yes |- | [https://radaris.com Radaris] | [https://radaris.com/control/ Control your information] | |} [[Category:Security]] [[Category:Privacy]] alpziqrv4vhgunxh0zos1dap8eh54uc 183 181 2018-05-04T15:42:40Z NoneTheFewer 214879 183 wikitext text/x-wiki SEO terms for later: * delete personal information from the internet https://what-is-privacy.com/category/opt-out-2/ {|class="article-table" ! Site ! Removal link ! Requires ID? |- | [https://www.truepeoplesearch.com TruePeopleSearch] |style="background-color:#CFC;"| [https://www.truepeoplesearch.com/removal Removals] | |- | [https://www.familytreenow.com/ FamilyTreeNow] |style="background-color:#CFC;"| [https://www.familytreenow.com/optout Opt Out of Records] | |- | [https://pipl.com/ Pipl] |style="background-color:#FCC;"| [https://pipl.com/help/remove/ n/a] | |- | [https://whitepages.plus White Pages] | [https://whitepages.plus/remove Information Removal Request] | yes |- | [https://radaris.com Radaris] | [https://radaris.com/control/ Control your information] | |} [[Category:Security]] [[Category:Privacy]] 4qgcacoaxczlzmk2scbex6r0jgdde1e Game notes 0 113 129 2018-03-11T16:21:09Z NoneTheFewer 214879 Created page with "== Cosmos Quest == https://www.kongregate.com/games/gaiabyte/cosmos-quest This script is for making purchasing buildings easier. Step 1: Open the console and make sure that..." 129 wikitext text/x-wiki == Cosmos Quest == https://www.kongregate.com/games/gaiabyte/cosmos-quest This script is for making purchasing buildings easier. Step 1: Open the console and make sure that <code>gameiframe (index.html)</code> is selected. Step 2: Run this code to set up the function: <source lang="javascript">function fireKeyboardEvent(event, keycode) { var keyboardEvent = document.createEventObject ? document.createEventObject() : document.createEvent("Events"); if (keyboardEvent.initEvent) keyboardEvent.initEvent(event, true, true); keyboardEvent.keyCode = keycode; keyboardEvent.which = keycode; document.dispatchEvent ? document.dispatchEvent(keyboardEvent) : document.fireEvent(event, keyboardEvent); }</source> Source: [http://digitalbaka.com/simulating-key-press-event-with-javascript .digital baka] Step 3: Run this code to trigger the building purchasing: <source lang="javascript">fireKeyboardEvent("keypress", 48);fireKeyboardEvent("keypress", 48);fireKeyboardEvent("keypress", 48);fireKeyboardEvent("keypress", 48);fireKeyboardEvent("keypress", 49);fireKeyboardEvent("keypress", 50);fireKeyboardEvent("keypress", 51);fireKeyboardEvent("keypress", 52);fireKeyboardEvent("keypress", 53);fireKeyboardEvent("keypress", 54);fireKeyboardEvent("keypress", 55);fireKeyboardEvent("keypress", 56);fireKeyboardEvent("keypress", 57);fireKeyboardEvent("keypress", 44);fireKeyboardEvent("keypress", 46);</source> Then just hit {{Key|up}} and {{Key|enter}} to rerun. [[Category:Games]] [[Category:Coding]] [[Category:JavaScript]] 8bpk3oh5tn7j5bburxr3n2l8qgbmzae GitHub 0 91 94 2018-03-04T21:49:48Z NoneTheFewer 214879 Created page with "== Listing repositories == Source: [https://stackoverflow.com/questions/16961947/how-to-list-organizations-private-repositories-via-github-api How to list organization's priv..." 94 wikitext text/x-wiki == Listing repositories == Source: [https://stackoverflow.com/questions/16961947/how-to-list-organizations-private-repositories-via-github-api How to list organization's private repositories via GitHub API?] <source lang="python">import requests pat = "[personal access token]" base_url = "https://api.github.com" org = "BookerSoftwareInc" repos_list = base_url + "/user/repos" params = { type: "private" } r = requests.get(repos_list, data=params, auth=('christina.schelin@booker.com', pat)) for repo in r.json(): print repo["full_name"] </source> [[Category:Coding]] gvsomegc7qi5oq4o4frltb69tiozpik Hacktools 0 92 95 2018-03-04T21:50:47Z NoneTheFewer 214879 Created page with "An attempt to remember what I learn. {|class="article-table sortable" ! Name ! Description ! Keyword(s) |- | [https://trifinite.org/trifinite_stuff_blooover.html Blooover] | ..." 95 wikitext text/x-wiki An attempt to remember what I learn. {|class="article-table sortable" ! Name ! Description ! Keyword(s) |- | [https://trifinite.org/trifinite_stuff_blooover.html Blooover] | Blooover is a proof-of-concept tool that is intended to run on J2ME-enabled cell phones that appear to be comparably seamless. Blooover is a tool that is intended to serve as an audit tool that people can use to check whether their phones and phones of friends and employees are vulnerable. It can also be used to carry out BlueBug attack. | defensive, mobile, offensive |- | [https://sourceforge.net/projects/btcrawler/ BTCrawler] | An application used to to discover Bluetooth devices and the services they provide. | discovery, mobile |- | [https://bbproxy.github.io/ bbproxy] | The bannerbomb.github.io web proxy is a quick and free way to change your IP address, unblock sites, and gain anonymity on the Web. | spoofing, anonymous |- | [https://www.symantec.com/connect/blogs/phonesnoop-spying-blackberry-users PhoneSnoop] | The application allows remote users to listen in on a Blackberry user’s surroundings. | offensive, mobile |- | [https://en.wikipedia.org/wiki/Yesware Yesware] | Yesware is a sales productivity platform. | irrelevant |- | [https://en.wikipedia.org/wiki/Pangu_Team Pangu] | These are tools that assist users in bypassing device restrictions and enabling root access to the iOS operating system. | mobile, iOS |- | [http://www.superoneclickdownload.com/ SuperOneClick] | Android Phone Rooting Software | mobile, android |- | [https://en.wikipedia.org/wiki/Cydia Cydia] | A package manager mobile app for iOS that enables a user to find and install software packages on jailbroken iPhones, iPads and iPod touchs. | mobile, iOS |- | [http://evasi0n7.en.lo4d.com/ evasi0n7] | evasi0n7 (or just evasion7) is a program which can jailbreak your Apple devices, namely those running newer versions of iOS such as iOS 7.x. | mobile, iOS |- | [https://www.tripwire.com/ Tripwire] | A free software security and data integrity tool for monitoring and alerting on specific file change(s) on a range of systems. | FIM, file integrity monitoring |- | [http://sectools.org/tool/impact/ Core Impact] | An easy-to-use penetration testing tool that enables your security team to exploit security weaknesses, increase productivity, and improve efficiencies. | pentesting |- | [http://sectools.org/tool/canvas/ CANVAS] | Canvas is a commercial vulnerability exploitation tool from Dave Aitel's ImmunitySec. | pentesting |} [[Category:Security]] [[Category:Software]] 89zn8z2dh6b7w9fjrcrv332qscc4ucd Kongregate 0 144 196 2018-07-20T12:18:00Z NoneTheFewer 214879 Created page with "For the odd time when I want to get completionist about badges. == All badges == https://docs.kongregate.com/docs/server-api-badges http://api.kongregate.com/badges.json E..." 196 wikitext text/x-wiki For the odd time when I want to get completionist about badges. == All badges == https://docs.kongregate.com/docs/server-api-badges http://api.kongregate.com/badges.json Example response: <source lang="json">[{ "id": 3059, "name": "Sliding into Place", "created_at": "2018-06-21T20:04:14.000-07:00", "icon_url": "https://cdn4.kongcdn.com/badge_icons/0000/6117/scalak_badge.png", "games": [{ "title": "Scalak", "url": "http://www.kongregate.com/games/chomi3/scalak" }], "points": 15, "difficulty": "medium", "description": "Complete all 25 levels", "users_count": 13672 }, { "id": 3060, "name": "Underground Hero", "created_at": "2018-06-26T14:23:45.000-07:00", "icon_url": "https://cdn3.kongcdn.com/badge_icons/0000/6119/three_goblets_badge.png", "games": [{ "title": "Three Goblets", "url": "http://www.kongregate.com/games/adventale/three-goblets" }], "points": 15, "difficulty": "medium", "description": "Complete your adventure", "users_count": 18658 } ]</source> == My badges == https://docs.kongregate.com/docs/server-api-user-badges http://api.kongregate.com/accounts/XtinaS/badges.json Sample response: <source lang="json">[{ "badge_id": 2708, "created_at": "2018-07-19T20:20:57.000-07:00" }, { "badge_id": 3046, "created_at": "2018-07-08T08:16:25.000-07:00" }, { "badge_id": 3062, "created_at": "2018-07-04T11:13:06.000-07:00" } ]</source> [[Category:Games]] [[Category:Coding]] d63vpm34o62pksfon5o3rexavqss9jh 197 196 2018-07-20T12:18:26Z NoneTheFewer 214879 197 wikitext text/x-wiki For the odd time when I want to get completionist about badges. == All badges == https://docs.kongregate.com/docs/server-api-badges http://api.kongregate.com/badges.json Example response: <source lang="javascript">[{ "id": 3059, "name": "Sliding into Place", "created_at": "2018-06-21T20:04:14.000-07:00", "icon_url": "https://cdn4.kongcdn.com/badge_icons/0000/6117/scalak_badge.png", "games": [{ "title": "Scalak", "url": "http://www.kongregate.com/games/chomi3/scalak" }], "points": 15, "difficulty": "medium", "description": "Complete all 25 levels", "users_count": 13672 }, { "id": 3060, "name": "Underground Hero", "created_at": "2018-06-26T14:23:45.000-07:00", "icon_url": "https://cdn3.kongcdn.com/badge_icons/0000/6119/three_goblets_badge.png", "games": [{ "title": "Three Goblets", "url": "http://www.kongregate.com/games/adventale/three-goblets" }], "points": 15, "difficulty": "medium", "description": "Complete your adventure", "users_count": 18658 } ]</source> == My badges == https://docs.kongregate.com/docs/server-api-user-badges http://api.kongregate.com/accounts/XtinaS/badges.json Sample response: <source lang="javascript">[{ "badge_id": 2708, "created_at": "2018-07-19T20:20:57.000-07:00" }, { "badge_id": 3046, "created_at": "2018-07-08T08:16:25.000-07:00" }, { "badge_id": 3062, "created_at": "2018-07-04T11:13:06.000-07:00" } ]</source> [[Category:Games]] [[Category:Coding]] 42jf6fyz42sn6q5gqaix3schqt9a4q6 198 197 2018-07-20T12:18:48Z NoneTheFewer 214879 198 wikitext text/x-wiki For the odd time when I want to get completionist about badges. == All badges == https://docs.kongregate.com/docs/server-api-badges http://api.kongregate.com/badges.json Example response: <source lang="javascript">[{ "id": 3059, "name": "Sliding into Place", "created_at": "2018-06-21T20:04:14.000-07:00", "icon_url": "https://cdn4.kongcdn.com/badge_icons/0000/6117/scalak_badge.png", "games": [{ "title": "Scalak", "url": "http://www.kongregate.com/games/chomi3/scalak" }], "points": 15, "difficulty": "medium", "description": "Complete all 25 levels", "users_count": 13672 }, { "id": 3060, "name": "Underground Hero", "created_at": "2018-06-26T14:23:45.000-07:00", "icon_url": "https://cdn3.kongcdn.com/badge_icons/0000/6119/three_goblets_badge.png", "games": [{ "title": "Three Goblets", "url": "http://www.kongregate.com/games/adventale/three-goblets" }], "points": 15, "difficulty": "medium", "description": "Complete your adventure", "users_count": 18658 } ]</source> == My badges == https://docs.kongregate.com/docs/server-api-user-badges http://api.kongregate.com/accounts/XtinaS/badges.json Sample response: <source lang="javascript">[{ "badge_id": 2708, "created_at": "2018-07-19T20:20:57.000-07:00" }, { "badge_id": 3046, "created_at": "2018-07-08T08:16:25.000-07:00" }, { "badge_id": 3062, "created_at": "2018-07-04T11:13:06.000-07:00" } ]</source> [[Category:Games]] [[Category:Coding]] ck1l9yqk83ho3jqjmofbjs7whazenal Lists and dicts 0 103 110 2018-03-05T21:30:57Z NoneTheFewer 214879 Created page with "This is for Python exclusively. == List of dicts: Get count of dict[value].value() == Example: <source lang="python"> [ {"name": "Mandy", "age": 30}, {"name": "Dani..." 110 wikitext text/x-wiki This is for Python exclusively. == List of dicts: Get count of dict[value].value() == Example: <source lang="python"> [ {"name": "Mandy", "age": 30}, {"name": "Danielle", "age": 35}, {"name": "Pam", "age": 37}, {"name": "Sue", "age": 30} ] </source> Get the count of dicts where age == 30. Expected answer: 2 <source lang="python"> from collections import Counter all_folk = [ {"name": "Mandy", "age": 30}, {"name": "Danielle", "age": 35}, {"name": "Pam", "age": 37}, {"name": "Sue", "age": 30} ] print Counter(folk['age'] for folk in all_folk)[30] </source> [[Category:Coding]] 7mangt97mxv4loeiu99c4wxl34n9is0 142 110 2018-03-20T14:04:51Z NoneTheFewer 214879 142 wikitext text/x-wiki This is for Python exclusively. == List of dicts: Get count of dict[value].value() == Example: <source lang="python"> [ {"name": "Mandy", "age": 30}, {"name": "Danielle", "age": 35}, {"name": "Pam", "age": 37}, {"name": "Sue", "age": 30} ] </source> Get the count of dicts where age == 30. Expected answer: 2 <source lang="python"> from collections import Counter all_folk = [ {"name": "Mandy", "age": 30}, {"name": "Danielle", "age": 35}, {"name": "Pam", "age": 37}, {"name": "Sue", "age": 30} ] print Counter(folk['age'] for folk in all_folk)[30] </source> == Search in list of dicts == Source: https://stackoverflow.com/questions/8653516/python-list-of-dictionaries-search Example: <source lang="python">[ {"name": "Tom", "age": 10}, {"name": "Mark", "age": 5}, {"name": "Pam", "age": 7} ]</source> To retrieve Pam's age: <source lang="python">(item["age"] for item in dicts if item["name"] == "Pam").next()</source> [[Category:Coding]] culgsrw94r18ivx9u9a9oczp58gtmm0 Main Page 0 80 81 2018-03-04T21:24:05Z FANDOM 32769624 FANDOM moved page [[Main Page]] to [[Xtinia Wiki]]: SEO 81 wikitext text/x-wiki #REDIRECT [[Xtinia Wiki]] 6ccrup6jpjv7eacys9e2a1vrp8uyc2e Meta 0 99 103 2018-03-05T12:59:49Z NoneTheFewer 214879 Created page with "Some quick links for my own purposes. * [[Special:UncategorizedPages|Uncategorized Pages]] * [[Special:WantedPages|Wanted Pages]] * [[Special:AllPages|All Pages]] * [[Special..." 103 wikitext text/x-wiki Some quick links for my own purposes. * [[Special:UncategorizedPages|Uncategorized Pages]] * [[Special:WantedPages|Wanted Pages]] * [[Special:AllPages|All Pages]] * [[Special:Categories|All Categories]] [[Category:Browse]] 36d10fuy9jfbjg5k8vyfeauvhu9849l Miscellaneous Nerd Shit 0 119 149 2018-03-30T21:36:08Z NoneTheFewer 214879 Created page with "Just random notes from around the web. == Active Directory on the Mac == https://www.symantec.com/connect/articles/mac-commands-directory-editor-dscl-and-custom-inventory T..." 149 wikitext text/x-wiki Just random notes from around the web. == Active Directory on the Mac == https://www.symantec.com/connect/articles/mac-commands-directory-editor-dscl-and-custom-inventory To show places to get to: <pre>Downloads $ dscl Entering interactive mode... (type "help" for commands) > ls Active Directory Local Contact Search > </pre> To pull out a user: <pre>dscl "/Active Directory/COMPANY/All Domains" -read /Users/first.last</pre> [[Category:MacOS]] [[Category:Active Directory]] mp8ts0j21yj0y8bvziihqd4bpzznjvo 187 149 2018-05-15T17:36:13Z NoneTheFewer 214879 187 wikitext text/x-wiki Just random notes from around the web. == Active Directory on the Mac == https://www.symantec.com/connect/articles/mac-commands-directory-editor-dscl-and-custom-inventory To show places to get to: <pre>Downloads $ dscl Entering interactive mode... (type "help" for commands) > ls Active Directory Local Contact Search > </pre> To pull out a user: <pre>dscl "/Active Directory/COMPANY/All Domains" -read /Users/first.last</pre> == Convert units == https://ss64.com/osx/units.html [[Category:MacOS]] [[Category:Active Directory]] 6q3o96f46oqq3bltbg7k831lr3791ri Ports 0 107 119 2018-03-09T16:22:33Z NoneTheFewer 214879 Created page with "{|class="article-table" ! Protocol ! RFC ! TCP/UDP ! Port(s) ! Description |- | FTP | 959 | TCP | 20/21 | FTP control; FTP data transfer |- | SSH | 4250-4256 | TCP | 22 | secu..." 119 wikitext text/x-wiki {|class="article-table" ! Protocol ! RFC ! TCP/UDP ! Port(s) ! Description |- | FTP | 959 | TCP | 20/21 | FTP control; FTP data transfer |- | SSH | 4250-4256 | TCP | 22 | secure alternative to Telnet |- | Telnet | 854 | TCP | 23 | basic unsecured connection between network devices |- | SMTP | 5321 | TCP | 25 | |- | DNS | 1034-1035 | both | 53 | |- | DHCP | 2131 | UDP | 67/68 | |- | TFTP | 1350 | UDP | 69 | |- | HTTP | 2616 | TCP | 80 | |- | POP3 | 1939 | TCP | 110 | email |- | NTP | 5905 | UDP | 123 | |- | NetBIOS | 1001-1002 | both | 137/138/139 | |- | IMAP | 3501 | TCP | 143 | email |- | SNMP | 1901-1908, 3411-3418 | both | 161/162 | |- | BGP | 4271 | TCP | 179 | |- | LDAP | 4510 | both | 389 | |- | HTTPS | 2818 | TCP | 443 | |- | syslog | 5424 | UDP | 514 | |- | LDAPS | 4513 | both | 636 | |- | FTP over TLS/SSL | 4217 | TCP | 989/990 | secure FTP |- | syslog over TLS/SSL | 5425 | TCP | 6514 | |} [[Category:Networking]] 4h5tb5th9ch8zc03633444mlmgzg2su 120 119 2018-03-09T16:27:22Z NoneTheFewer 214879 120 wikitext text/x-wiki {|class="article-table" ! Protocol ! RFC ! TCP/UDP ! Port(s) ! Description |- | FTP | 959 | TCP | 20/21 | FTP control; FTP data transfer |- | SSH | 4250-4256 | TCP | 22 | secure alternative to Telnet |- | Telnet | 854 | TCP | 23 | basic unsecured connection between network devices |- | SMTP | 5321 | TCP | 25 | |- | DNS | 1034-1035 | both | 53 | UDP for zone queries; TCP for zone transfers |- | DHCP | 2131 | UDP | 67/68 | |- | TFTP | 1350 | UDP | 69 | |- | HTTP | 2616 | TCP | 80 | |- | POP3 | 1939 | TCP | 110 | email |- | NTP | 5905 | UDP | 123 | |- | NetBIOS | 1001-1002 | both | 137/138/139 | |- | IMAP | 3501 | TCP | 143 | email |- | SNMP | 1901-1908, 3411-3418 | both | 161/162 | |- | BGP | 4271 | TCP | 179 | |- | LDAP | 4510 | both | 389 | |- | HTTPS | 2818 | TCP | 443 | |- | syslog | 5424 | UDP | 514 | |- | LDAPS | 4513 | both | 636 | |- | FTP over TLS/SSL | 4217 | TCP | 989/990 | secure FTP |- | syslog over TLS/SSL | 5425 | TCP | 6514 | |} [[Category:Networking]] gws5yilhrp5b86kx46sk9mrt52sf6rm 122 120 2018-03-09T17:01:57Z NoneTheFewer 214879 122 wikitext text/x-wiki {|class="article-table" ! Protocol ! RFC ! TCP/UDP ! Port(s) ! Description |- | FTP | 959 | TCP | 20/21 | FTP control; FTP data transfer |- | SSH | 4250-4256 | TCP | 22 | secure alternative to Telnet |- | Telnet | 854 | TCP | 23 | basic unsecured connection between network devices |- | SMTP | 5321 | TCP | 25 | |- | DNS | 1034-1035 | both | 53 | UDP for zone queries; TCP for zone transfers |- | DHCP | 2131 | UDP | 67/68 | |- | TFTP | 1350 | UDP | 69 | |- | HTTP | 2616 | TCP | 80 | |- | Kerberos | | UDP | 88 | Kerberos key distribution center server |- | POP3 | 1939 | TCP | 110 | email |- | NTP | 5905 | UDP | 123 | |- | NetBIOS | 1001-1002 | both | 137/138/139 | |- | IMAP | 3501 | TCP | 143 | email |- | SNMP | 1901-1908, 3411-3418 | both | 161/162 | |- | BGP | 4271 | TCP | 179 | |- | LDAP | 4510 | both | 389 | |- | HTTPS | 2818 | TCP | 443 | |- | Microsoft-DS Active Directory | | TCP | 445 | |- | syslog | 5424 | UDP | 514 | |- | IPP (Internet Printing Protocol) | | both | 631 | |- | LDAPS | 4513 | both | 636 | |- | FTP over TLS/SSL | 4217 | TCP | 989/990 | secure FTP |- | syslog over TLS/SSL | 5425 | TCP | 6514 | |} [[Category:Networking]] pwusgwt1wg0abm1wsc9avyye81wx2ko PowerShell 0 115 137 2018-03-12T17:51:40Z NoneTheFewer 214879 Created page with "Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path")..." 137 wikitext text/x-wiki Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path").FileVersion echo $HOST -> $VERSION</source> == Has this KB been installed? == <source lang="powershell">Get-HotFix -ID KB4074593</source> == Run a script over multiple computers == <source lang="powershell">$computers = "hostname1.domain.tld","hostname2.domain.tld" $regkey = "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Invoke-Command -Computername $computers -ScriptBlock { $hostname=hostname $status=Get-ItemProperty -Path $regkey | Select-Object -ExpandProperty Flags if ($status -eq "1") { "___ $hostname" } else { "!!! $hostname" } }</source> [[Category:Coding]] [[Category:PowerShell]] nzzi7xs0tnv948z6bbpgz96yx7zto24 138 137 2018-03-12T17:52:18Z NoneTheFewer 214879 138 wikitext text/x-wiki Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path").FileVersion echo $HOST -> $VERSION</source> == Has this KB been installed? == <source lang="powershell">Get-HotFix -ID KB4074593</source> == Run a script over multiple computers == <source lang="powershell">$computers = "hostname1.domain.tld","hostname2.domain.tld" $regkey = "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Invoke-Command -Computername $computers -ScriptBlock { $hostname=hostname $status=Get-ItemProperty -Path $regkey | Select-Object -ExpandProperty Flags if ($status -eq "1") { "___ $hostname" } else { "!!! $hostname" } }</source> [[Category:Coding]] [[Category:PowerShell]] 59olv3ysnzazlmowgk1la2dqj7412gs 144 138 2018-03-28T14:48:01Z NoneTheFewer 214879 144 wikitext text/x-wiki Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path").FileVersion echo $HOST -> $VERSION</source> == Has this KB been installed? == <source lang="powershell">Get-HotFix -ID KB4074593</source> == Run a script over multiple computers == <source lang="powershell">$computers = "hostname1.domain.tld","hostname2.domain.tld" $regkey = "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Invoke-Command -Computername $computers -ScriptBlock { $hostname=hostname $status=Get-ItemProperty -Path $regkey | Select-Object -ExpandProperty Flags if ($status -eq "1") { "___ $hostname" } else { "!!! $hostname" } }</source> == Azure == === Retrieve app keys that are set to expire soon === <source lang="powershell"> $ErrorActionPreference = "Stop" # Basic variables. $Buffer=30 $KeyApp='key_app_name' # Are we logged in? $account=Get-AzureRmContext if ([string]::IsNullOrEmpty($account.Account)) { $null=Connect-AzureRmAccount } $obj=Get-AzureRmADApplication -DisplayName $KeyApp | Select-Object -Property ObjectId $keys=Get-AzureRmADAppCredential -ObjectId $obj.ObjectId $today = (Get-Date).Date $test=$False foreach ($key in $keys) { $dkey = [datetime]$key.EndDate if ($dkey.AddDays(-$Buffer) -gt $today) { $test=$True } } Write-Output $test </source> [[Category:Coding]] [[Category:PowerShell]] sn17lnqdzpqigzse79jjokjs7lqdysu 145 144 2018-03-28T14:49:30Z NoneTheFewer 214879 Adding categories 145 wikitext text/x-wiki Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path").FileVersion echo $HOST -> $VERSION</source> == Has this KB been installed? == <source lang="powershell">Get-HotFix -ID KB4074593</source> == Run a script over multiple computers == <source lang="powershell">$computers = "hostname1.domain.tld","hostname2.domain.tld" $regkey = "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Invoke-Command -Computername $computers -ScriptBlock { $hostname=hostname $status=Get-ItemProperty -Path $regkey | Select-Object -ExpandProperty Flags if ($status -eq "1") { "___ $hostname" } else { "!!! $hostname" } }</source> == Azure == === Retrieve app keys that are set to expire soon === <source lang="powershell"> $ErrorActionPreference = "Stop" # Basic variables. $Buffer=30 $KeyApp='key_app_name' # Are we logged in? $account=Get-AzureRmContext if ([string]::IsNullOrEmpty($account.Account)) { $null=Connect-AzureRmAccount } $obj=Get-AzureRmADApplication -DisplayName $KeyApp | Select-Object -Property ObjectId $keys=Get-AzureRmADAppCredential -ObjectId $obj.ObjectId $today = (Get-Date).Date $test=$False foreach ($key in $keys) { $dkey = [datetime]$key.EndDate if ($dkey.AddDays(-$Buffer) -gt $today) { $test=$True } } Write-Output $test </source> [[Category:Coding]] [[Category:PowerShell]] [[Category:Azure]] gabpyzrkbvsqw7z029z4dn0xvf5p7gz 146 145 2018-03-29T17:28:55Z NoneTheFewer 214879 146 wikitext text/x-wiki Useful PowerShell scripts. == Get file version of a file == <source lang="powershell">$HOST=hostname $VERSION=[System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\path").FileVersion echo $HOST -> $VERSION</source> == Has this KB been installed? == <source lang="powershell">Get-HotFix -ID KB4074593</source> == Run a script over multiple computers == <source lang="powershell">$computers = "hostname1.domain.tld","hostname2.domain.tld" $regkey = "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Invoke-Command -Computername $computers -ScriptBlock { $hostname=hostname $status=Get-ItemProperty -Path $regkey | Select-Object -ExpandProperty Flags if ($status -eq "1") { "___ $hostname" } else { "!!! $hostname" } }</source> == Azure == === Retrieve app keys that are set to expire soon === <source lang="powershell"> $ErrorActionPreference = "Stop" # Basic variables. $Buffer=30 $KeyApp='key_app_name' # Are we logged in? $account=Get-AzureRmContext if ([string]::IsNullOrEmpty($account.Account)) { $null=Connect-AzureRmAccount } $obj=Get-AzureRmADApplication -DisplayName $KeyApp | Select-Object -Property ObjectId $keys=Get-AzureRmADAppCredential -ObjectId $obj.ObjectId $today = (Get-Date).Date $test=$False foreach ($key in $keys) { $dkey = [datetime]$key.EndDate if ($dkey.AddDays(-$Buffer) -gt $today) { $test=$True } } Write-Output $test </source> == On macOS == === "powershell command not found" === See: https://www.peppercrew.nl/index.php/2017/12/mac-powershell-core-after-upgrading-you-receive-the-message-powershell-command-not-found/ [[Category:Coding]] [[Category:PowerShell]] [[Category:Azure]] lah9mj99mwgosw9yk2hzuxc7k4y0t2r PyCharm 0 140 180 2018-04-22T17:27:37Z NoneTheFewer 214879 Created page with "https://intellij-support.jetbrains.com/hc/en-us/community/posts/206602925-Says-package-installed-successfully-but-doesn-t-actually-install" 180 wikitext text/x-wiki https://intellij-support.jetbrains.com/hc/en-us/community/posts/206602925-Says-package-installed-successfully-but-doesn-t-actually-install 30myoma6cv4f4wtnmwzw9royce1fufx Python 0 117 143 2018-03-21T15:06:27Z NoneTheFewer 214879 Created page with "Just miscellaneous notes related to Python. == Print attributes of an object == <source lang="python">from pprint import pprint pprint(vars(your_object))</source> [[Category..." 143 wikitext text/x-wiki Just miscellaneous notes related to Python. == Print attributes of an object == <source lang="python">from pprint import pprint pprint(vars(your_object))</source> [[Category:Coding]] [[Category:Python]] dvqq3ih6f1kgpfvhdqhoaqar8xgsyg5 Regex 0 96 99 2018-03-04T21:55:43Z NoneTheFewer 214879 Created page with "== Get string, so long as the first char isn't a number OR is the start == What a horrible thing I just typed. <pre>(?:^|.*[^0-9])[0-9]{16}(?:$|[^0-9].*$)</pre> <code>(?:....." 99 wikitext text/x-wiki == Get string, so long as the first char isn't a number OR is the start == What a horrible thing I just typed. <pre>(?:^|.*[^0-9])[0-9]{16}(?:$|[^0-9].*$)</pre> <code>(?:...|...)</code> is a non-capturing group. [[Category:Coding]] trpd6or0njj78ishbyxkcsgm2dbc1ke Remote Desktop 0 121 151 2018-04-02T15:17:43Z NoneTheFewer 214879 Created page with "All about Remote Desktop Manager Free. == Default settings == {|class="article-table" ! Area ! Text ! Setting |- | General | Password | [blank] |- | Display | Screen sizing ..." 151 wikitext text/x-wiki All about Remote Desktop Manager Free. == Default settings == {|class="article-table" ! Area ! Text ! Setting |- | General | Password | [blank] |- | Display | Screen sizing mode | Smart sizing |- | Local Resources | Remote audio | Do not play |- | Experience | Persistent bitmap caching | [unchecked] |- | Experience | Show window contents while dragging | [unchecked] |- | Experience | Menu and window animation | [unchecked] |- | Experience | Themes | [unchecked] |} == Errors == === Troubleshooting === Can I connect via Microsoft Remote Desktop? ''Probably''. Logs can be found here: <code>~/Library/Application Support/com.devolutions.remotedesktopmanager.free/Connections.log</code> === 131084 / 131085 === == Generic == To reset my password: {{Key|fn}} + {{Key|control}} + {{Key|option}} + {{Key|delete}} [[Category:MacOS]] [[Category:Software]] s7mdys4czo7ndfvgoshalzd9w80i5u7 194 151 2018-06-27T13:46:43Z NoneTheFewer 214879 194 wikitext text/x-wiki All about Remote Desktop Manager Free. == Default settings == {|class="article-table" ! Area ! Text ! Setting |- | General | Password | [blank] |- | Display | Screen sizing mode | Smart sizing |- | Local Resources | Remote audio | Do not play |- | Experience | Persistent bitmap caching | [unchecked] |- | Experience | Show window contents while dragging | [unchecked] |- | Experience | Menu and window animation | [unchecked] |- | Experience | Themes | [unchecked] |} == Errors == === Troubleshooting === Can I connect via Microsoft Remote Desktop? ''Probably''. Logs can be found here: <code>~/Library/Application Support/com.devolutions.remotedesktopmanager.free/Connections.log</code> == Generic == To reset my password: {{Key|fn}} + {{Key|control}} + {{Key|option}} + {{Key|delete}} [[Category:MacOS]] [[Category:Software]] frpqmh5fp3885v6pff8tb6hse5m7dhu Security Games 0 95 98 2018-03-04T21:55:06Z NoneTheFewer 214879 Created page with "{{stub}} {|class="article-table sortable" ! Name ! Description ! Keyword(s) |- | [https://www.gameofhacks.com/ Game of Hacks] | This game was designed to test your applicatio..." 98 wikitext text/x-wiki {{stub}} {|class="article-table sortable" ! Name ! Description ! Keyword(s) |- | [https://www.gameofhacks.com/ Game of Hacks] | This game was designed to test your application hacking skills. You will be presented with vulnerable pieces of code and your mission if you choose to accept it is to find which vulnerability exists in that code as quickly as possible. | single-player, multi-player |- | [http://www.hackertest.net/ HackerTest] | HackerTest.net is your own online hacker simulation. With 20 levels that require different skills to get to another step of the game, this new real-life imitation will help you advance your security knowledge. | web hacking, single-player |- | [https://xss-game.appspot.com/ XSS Game] | In this training program, you will learn to find and exploit XSS bugs. You'll use this knowledge to confuse and infuriate your adversaries by preventing such bugs from happening in your applications. | web hacking, single-player |} [[Category:Games]] [[Category:Security]] bf9r27t0qo0yisoquwjbfahxzf585d5 Security games 0 125 160 2018-04-09T14:43:20Z NoneTheFewer 214879 Created page with "Some useful infosec games. {|class="article-table" !width="200px"|Name ! Description |- | [http://ctf.infosecinstitute.com/index.php Capture The Flag!] | "The Infosec Instite..." 160 wikitext text/x-wiki Some useful infosec games. {|class="article-table" !width="200px"|Name ! Description |- | [http://ctf.infosecinstitute.com/index.php Capture The Flag!] | "The Infosec Instite n00bs CTF Labs is a web application that hosts 15 mini Capture the Flag (CTF) challenges intended for beginners." |- | [http://ctf.infosecinstitute.com/ctf2/ Practical Web Hacking] | "This app is focused on ethical hacking freshers and new web developers. Nonetheless, that should not stop experienced ethical hackers or developers from having some fun!" |- | [https://overthewire.org/wargames/natas/ Natas] | "Natas teaches the basics of serverside web-security. Each level of natas consists of its own website located at http://natasX.natas.labs.overthewire.org, where X is the level number. There is no SSH login. To access a level, enter the username for that level (e.g. natas0 for level 0) and its password." |- | [http://www.cryptograms.org/play.php Cryptograms] | |} [[Category:Games]] [[Category:Security]] rubckav255wwfsex5nhoihhiamnkehi Security software/Maltego CE 0 110 125 2018-03-10T14:13:33Z NoneTheFewer 214879 Created page with "{{Softwarebox | title1 = Maltego CE | homepage = http://www.paterva.com/web4/index.php/maltego | oses = macOS, Windows, Linux | interface = GUI | cost = free | version = 4.1.0..." 125 wikitext text/x-wiki {{Softwarebox | title1 = Maltego CE | homepage = http://www.paterva.com/web4/index.php/maltego | oses = macOS, Windows, Linux | interface = GUI | cost = free | version = 4.1.0.10552 | last_updated = 2017-10-22 }} Maltego is an interactive data mining tool that renders directed graphs for link analysis. The tool is used in online investigations for finding relationships between pieces of information from various sources located on the internet. nyuepx5altqep8sy3lgine3tvxhmb5v Shell scripting 0 118 147 2018-03-30T21:30:53Z NoneTheFewer 214879 Created page with "I still dislike it. == Export certain fields from LDAP to CSV == This assumes, of course, the fields. This also assumes one is on a Mac. <source lang="shell">#!/bin/sh ech..." 147 wikitext text/x-wiki I still dislike it. == Export certain fields from LDAP to CSV == This assumes, of course, the fields. This also assumes one is on a Mac. <source lang="shell">#!/bin/sh echo Name,Office,Username,UID > output_ad.txt # list users, get data for each user for i in `dscl "/Active Directory/COMPANY/All Domains" -list /Users`; do uniqueID=`dscl "/Active Directory/COMPANY/All Domains" -read /Users/$i UniqueID | awk '{ print $2 }'` # Exclude system-created users, which have IDs below 500. if [ "${uniqueID:-0}" -ge 500 ]; then distinguishedName=`dscl "/Active Directory/COMPANY/All Domains" -read /Users/$i distinguishedName | cut -d':' -f 3` # Hack to only get user accounts. if [[ "$distinguishedName" = *"OU="* ]]; then numlen=$(expr ${#distinguishedName} - 2) IFS=',' read -r -a array <<< "${distinguishedName:2:$numlen}" IFS='=' read -r -a final <<< "${array[0]}" dname="${final[1]}" IFS=',' read -r -a arryay <<< "${distinguishedName:2:$numlen}" IFS='=' read -r -a final <<< "${array[1]}" doffice="${final[1]}" recName=`dscl "/Active Directory/BOOKER/All Domains" -read /Users/$i RecordName | awk '{ print $2 }'` echo $dname,$doffice,$recName,$uniqueID >> output_ad.txt fi fi done</source> [[Category:Coding]] [[Category:Active Directory]] [[Category:Shell Script]] h5lp4gvskl2kjpntmd52r36dx6sz3u9 148 147 2018-03-30T21:34:01Z NoneTheFewer 214879 148 wikitext text/x-wiki I still dislike it. == Export certain fields from LDAP to CSV == This assumes, of course, the fields. This also assumes one is on a Mac. <source lang="bash">#!/bin/sh echo Name,Office,Username,UID > output_ad.txt # list users, get data for each user for i in `dscl "/Active Directory/COMPANY/All Domains" -list /Users`; do uniqueID=`dscl "/Active Directory/COMPANY/All Domains" -read /Users/$i UniqueID | awk '{ print $2 }'` # Exclude system-created users, which have IDs below 500. if [ "${uniqueID:-0}" -ge 500 ]; then distinguishedName=`dscl "/Active Directory/COMPANY/All Domains" -read /Users/$i distinguishedName | cut -d':' -f 3` # Hack to only get user accounts. if [[ "$distinguishedName" = *"OU="* ]]; then numlen=$(expr ${#distinguishedName} - 2) IFS=',' read -r -a array <<< "${distinguishedName:2:$numlen}" IFS='=' read -r -a final <<< "${array[0]}" dname="${final[1]}" IFS=',' read -r -a arryay <<< "${distinguishedName:2:$numlen}" IFS='=' read -r -a final <<< "${array[1]}" doffice="${final[1]}" recName=`dscl "/Active Directory/BOOKER/All Domains" -read /Users/$i RecordName | awk '{ print $2 }'` echo $dname,$doffice,$recName,$uniqueID >> output_ad.txt fi fi done</source> [[Category:Coding]] [[Category:Active Directory]] [[Category:Shell Script]] dll9i37u124j5vtpzeq99vslh2hgvjy Skinning resources 0 111 126 2018-03-10T14:35:24Z NoneTheFewer 214879 Created page with " == Colors == * [https://material.io/guidelines/style/color.html#color-color-palette Material Design]" 126 wikitext text/x-wiki == Colors == * [https://material.io/guidelines/style/color.html#color-color-palette Material Design] phfn5pde17quszmam6qwhs8crl14iue 127 126 2018-03-10T14:35:31Z NoneTheFewer 214879 Adding categories 127 wikitext text/x-wiki == Colors == * [https://material.io/guidelines/style/color.html#color-color-palette Material Design] [[Category:Skinning]] qqhx7lfaegzz31xl2ndslxd6t73tgqy 173 127 2018-04-17T14:16:32Z NoneTheFewer 214879 173 wikitext text/x-wiki == Colors == * [https://material.io/guidelines/style/color.html#color-color-palette Material Design] * [https://www.w3schools.com/colors/colors_metro.asp Metro Colors] [[Category:Skinning]] skptp1yk1nzsigb9udlb164o1tjpomd Splunk 0 106 118 2018-03-09T14:18:58Z NoneTheFewer 214879 Created page with "== Lookup tables (csv) == I don't know why it took me so long to get this. Documenting in the hopes that using my own words will help future!me. === Sample data === <code>s..." 118 wikitext text/x-wiki == Lookup tables (csv) == I don't know why it took me so long to get this. Documenting in the hopes that using my own words will help future!me. === Sample data === <code>sourcetype='sample'</code> {|class="wikitable" ! Time ! UserID ! Method ! URI_Stem ! Query |- | 2018-03-01T19:15:00.000Z | 123654 | POST | /App/Admin/Login.aspx | |- | 2018-03-01T19:16:00.000Z | 543987 | GET | /App/SpaAdmin/Services/EditService.aspx | ?TreatmentID=776655 |} === Lookup CSV file === {!class="wikitable" ! UID ! Username |- | 123654 | Danielle Smith |- | 987902 | Joanne Schmoe |} === Sample query === The <code>rename</code> directive is in there because it needs to match the CSV lookup column name exactly. <source lang="sql">sourcetype='sample' | rename UserID AS UID | lookup UID | table _time, Username, Method</source> {|class="wikitable" ! _time ! Username ! Method |- | 2018-03-01T19:15:00.000Z | Danielle Smith | POST |- | 2018-03-01T19:16:00.000Z | | GET |} [[Category:Query languages]] [[Category:Splunk]] gmbbiknoelpeg7yrfwxnx25bvejfg0m 182 118 2018-04-28T23:38:46Z NoneTheFewer 214879 182 wikitext text/x-wiki == Lookup tables (csv) == I don't know why it took me so long to get this. Documenting in the hopes that using my own words will help future!me. === Setup === ==== Table file ==== # Go to Settings → Lookups. # Click "Lookup table files", then "New". #* Destination app: search #* Destination filename: filename.csv # Click Save. # Edit the permissions. # Change to "All apps", then click Save. ==== Lookup definition ==== # Go to Settings → Lookups. # Click "Lookup definitions", then "New". #* Destination app: search #* Name: [whatever] #* Type: file-based #* Lookup file: filename.csv # Click Save. # Edit the permissions. # Change to "All apps", then click Save. ==== Automatic lookup ==== # Go to Settings → Lookups. # Click "Automatic lookups", then "New". #* Destination app: search #* Name: [whatever] #* Lookup file: filename.csv #* Apply to: [whichever] #* named: [whatever] #* Lookup input fields: [CSV lookup column] = [apply-to fieldname] #* Lookup output fields: [CSV data column] = [new column name] # Click Save. # Edit the permissions. # Change to "All apps", then click Save. === Sample data === <code>sourcetype="iis"</code> {|class="wikitable" ! Time ! UserID ! Method ! URI_Stem ! Query |- | 2018-03-01T19:15:00.000Z | 123654 | POST | /App/Admin/Login.aspx | |- | 2018-03-01T19:16:00.000Z | 543987 | GET | /App/SpaAdmin/Services/EditService.aspx | ?TreatmentID=776655 |} === Lookup CSV file === {|class="wikitable" ! UID ! Username |- | 123654 | Danielle Smith |- | 987902 | Joanne Schmoe |} === Sample query === <source lang="sql">sourcetype=iis | eval CustomField=case(CustomField!="", CustomField, OriginalID=543987, "Jane Doe") | table _time, CustomField, cs_method, cs_Referer, cs_uri_stem, cs_uri_query</source> {|class="wikitable" ! _time ! Username ! Method |- | 2018-03-01T19:15:00.000Z | Danielle Smith | POST |- | 2018-03-01T19:16:00.000Z | Jane Doe | GET |} [[Category:Query languages]] [[Category:Splunk]] 91ueiom4kbwvuw4mgclbb4h3wihjlkp Sublime Text 0 142 189 2018-06-12T16:05:33Z NoneTheFewer 214879 Created page with "To add syntax highlighting: command-shift-P Package Control: Install Package select the package" 189 wikitext text/x-wiki To add syntax highlighting: command-shift-P Package Control: Install Package select the package 77riow6dbdwhk7gaxaqj4o9xannx33q 190 189 2018-06-15T12:08:52Z NoneTheFewer 214879 190 wikitext text/x-wiki == Syntax highlighting == Syntax highlighting is controlled via packages. To add syntax highlighting: * Hit: {{Key|command}} + {{Key|shift}} + {{Key|P}} * Select "Package Control: Install Package". * Select the appropriate package. == Tab behavior == To change tab behavior to be ''accurate'': * Go to Sublime Text > Preferences > Key Bindings. * Add the following within the list: <source lang="javascript">{ "keys": ["ctrl+tab"], "command": "next_view" }, { "keys": ["ctrl+shift+tab"], "command": "prev_view" }</source> * Save. * Restart Sublime Text. [[Category:Software]] 320ip6knc0m6xkcphhu00p2z4f0l0bd Typing special characters 0 123 156 2018-04-05T13:22:42Z NoneTheFewer 214879 Created page with "{{MacKeys}} {|class="article-table" ! Character ! Description ! Keys |- | <code>´</code> | acute accent | {{Key|option}} + {{Key|e}}, $letter |- | <code>`</code> | grave acc..." 156 wikitext text/x-wiki {{MacKeys}} {|class="article-table" ! Character ! Description ! Keys |- | <code>´</code> | acute accent | {{Key|option}} + {{Key|e}}, $letter |- | <code>`</code> | grave accent | {{Key|option}} + {{Key|`}}, $letter |- | <code>ç</code> | cedilla | {{Key|option}} + {{Key|c}} |- | <code>ˆ</code> | circumflex | {{Key|option}} + {{Key|i}}, $letter |- | <code>¨</code> | umlaut | {{Key|option}} + {{key|u}}, $letter |- | <code>œ</code> | OE ligature | {{Key|option}} + {{key|q}} |} [[Category:Characters]] [[Category:MacOS]] sh1xyr6xdamjsxoiasmvdvyxzjd4ry9 Uninstall software 0 139 177 2018-04-21T18:22:31Z NoneTheFewer 214879 Created page with "Places to check when removing software from macOS. <pre>~/Library/Application Support ~/Library/Caches ~/Library/Containers ~/Library/LaunchAgents ~/Library/Preferences /Libr..." 177 wikitext text/x-wiki Places to check when removing software from macOS. <pre>~/Library/Application Support ~/Library/Caches ~/Library/Containers ~/Library/LaunchAgents ~/Library/Preferences /Library/Application Support /Library/LaunchAgents /Library/LaunchDaemons /Library/PreferencePanes</pre> [[Category:MacOS]] [[Category:IT]] nby4owzo7aqrvdxgnq16bnf73se0blu Wikia 0 143 191 2018-06-17T11:55:10Z NoneTheFewer 214879 Created page with "== Portable infobox == This is for the new tagged version, rather than the old wiki-markup version. === Adding a link, if there's data === This example adds a link to the p..." 191 wikitext text/x-wiki == Portable infobox == This is for the new tagged version, rather than the old wiki-markup version. === Adding a link, if there's data === This example adds a link to the page's IMDb page, ''if'' there's data supplied. <source lang="html4strict"> <data source="imdb"> <label>IMDb</label> <default></default> <format>[https://www.imdb.com/title/{{{imdb}}}/ {{PAGENAME}}]</format> </data></source> [[Category:Wikia]] czbvsfelwhadzq9yxs0jlyra17y3jxv Wikia Things 0 93 96 2018-03-04T21:52:36Z NoneTheFewer 214879 Created page with "== Collapsed tables == <pre> {| style="width:100%;" class="mw-collapsible mw-collapsed wikitable" ! colspan="4" |The Research Facilities </pre> == Where are the meta things?..." 96 wikitext text/x-wiki == Collapsed tables == <pre> {| style="width:100%;" class="mw-collapsible mw-collapsed wikitable" ! colspan="4" |The Research Facilities </pre> == Where are the meta things? == {|class="article-table" ! Item ! URL bit |- | all messages | <code>*/wiki/Special:AllMessages</code> |- | favicon | <code>*/wiki/Special:AdminDashboard</code> |} == Parser functions == === Show row only if... === <pre> |-style="vertical-align:top;" {{#ifeq: {{{notes|}}} | | | {{!}} '''Notes''' {{!}} {{{notes}}} }} </pre> == Number format conversion == Originally from the [http://realm-grinder.wikia.com/wiki/Notation Realm Grinder wiki]. === Template === The template is Template:NumberInline: <pre> <onlyinclude>{{#invoke: NumberFormat | Inline | {{{1}}} }}</onlyinclude> </pre> === Script === The calculation part is at Module:NumberFormat. This is in Lua. <source lang="lua"> -- Item suffixes. local suffixes={'K', 'M', 'B', 'T', 'Qa', 'Qi', 'Sx', 'Sp', 'Oc', 'No', 'Dc', 'Ud', 'Dd', 'Td', 'Qad', 'Qid', 'Sxd', 'Spd', 'Ocd', 'Nod', 'Vg', 'Uvg', 'Dvg', 'Tvg', 'Qavg', 'Qivg', 'Sxvg', 'Spvg', 'Ocvg', 'Novg', 'Tg', 'Utg', 'Dtg', 'Ttg', 'Qatg', 'Qitg', 'Sxtg', 'Sptg', 'Octg', 'Notg', 'Qag', 'Uqag', 'Dqag', 'Tqag', 'Qaqag', 'Qiqag', 'Sxqag', 'Spqag', 'Ocqag', 'Noqag', 'Qig', 'UQig', 'DQig', 'TQig', 'QaQig', 'QiQig', 'SxQig', 'SpQig', 'OcQig', 'NoQig', 'Sxg', 'USxg', 'DSxg', 'TSxg', 'QaSxg', 'QiSxg', 'SxSxg', 'SpSxg', 'OcSxg', 'NoSxg', 'Spg', 'USpg', 'DSpg', 'TSpg', 'QaSpg', 'QiSpg', 'SxSpg', 'SpSpg', 'OcSpg', 'NoSpg', 'Ocg', 'UOcg', 'DOcg', 'TOcg', 'QaOcg', 'QiOcg', 'SxOcg', 'SpOcg', 'OcOcg', 'NoOcg', 'Nog', 'UNog', 'DNog', 'TNog', 'QaNog', 'QiNog', 'SxNog', 'SpNog', 'OcNog', 'NoNog', 'C', 'Uc'} local suffixesRev = {} -- Set the #e__ bit. for i = 1, #suffixes do suffixesRev[suffixes[i]:lower()] = ((i + 1) * 3) - 3 end -- Set the original number-and-letter bit. function expToShort(exp) return suffixes[math.floor(exp / 3)] end function shortToExp(short) return suffixesRev[short:lower()] end function decompNum(num) local base, mant, suffix, start, stop local exp = 0 -- Strip whitespace. num = num:gsub('%s', '') --lua stop, no, go home lua you're drunk, that's not a regex start, stop = num:find('%d[%d,]*%.?%d*[eE]?%d*') if (start ~= nil) then base = num:sub(start, stop) else return end start, stop = num:find('%a+$', stop + 1) if (start ~= nil) then suffix = num:sub(start, stop) end start, stop = base:find('^%d[%d,]*%.?%d*') if (start ~= nil) then mant = base:sub(start, stop) else return end -- Remove all commas. mant = mant:gsub(',', '') start, stop = base:find('[eE]%d*$') if (start ~= nil) then exp = base:sub(start + 1, stop) -- xms exp = tonumber(exp) end if (suffix ~= nil) then exp = exp + shortToExp(suffix) end return mant, exp end function normalize(mant, exp) mant = mant:gsub('^0+', '') mant = mant:gsub('%.$', '') local dot = mant:find('%.') or #mant + 1 mant = mant:gsub('[0.]+$', '') if (mant == '') then return '0', 0 end exp = exp + (dot - 2) mant = mant:gsub('%.', '') return mant, exp end function sciSig(mant, sig) if (#mant == 1) then return mant end return mant:sub(1, 1) .. '.' .. mant:sub(2, sig) end function intSig(mant, sig) local res if (#mant >= sig) then res = mant:sub(1, sig) else res = mant .. string.rep('0', sig - #mant) end if (#res <= 3) then return res else local out = res:sub(-3) res = res:sub(1, -4) while (#res > 0) do out = res:sub(-3) .. ',' .. out res = res:sub(1, -4) end return out end end function otherSig(mant, base, exp, sig) mant = mant:sub(1, sig) local res = intSig(mant, exp % base + 1) if (#mant <= base) then return res end return res .. '.' .. mant:sub(exp % base + 2) end function sci(mant, exp) return sciSig(mant, 4) .. '<sub>E</sub>' .. exp end function eng(mant, exp) return otherSig(mant, 3, exp, 4) .. '<sub>E</sub>' .. (exp - exp % 3) end function int(mant, exp) return intSig(mant, exp + 1) end function short(mant, exp) return otherSig(mant, 1, exp, 4) .. '&nbsp;' .. expToShort(exp) --,3 end function Scientific(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp >= 0 and exp < 6) then return ShortScale(frame) else return sci(mant, exp) end end function Engineering(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp >= 0 and exp < 6) then return ShortScale(frame) elseif (exp < 0) then return Scientific(frame) else return eng(mant, exp) end end function ShortScale(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp < 0) then return Scientific(frame) elseif (exp < 3) then return otherSig(mant, 3, exp, 4) elseif (exp < 6) then return int(mant, exp) else return short(mant, exp) end end function TableCell(frame) short = ShortScale(frame) sci = Scientific(frame) if (short == sci) then return short else return short .. '<br/>' .. sci end end -- Return the text that's gonna go where it needs togo. function Inline(frame) short = ShortScale(frame) sci = Scientific(frame) if (short == sci) then return short else return short .. ' (' .. sci .. ')' end end function Debug(frame) local res = '' for k,v in pairs(frame.args) do mant, exp = normalize(decompNum(v)) res = res .. '<b>' .. k .. '</b>: ' .. v .. '(' .. type(v) .. ', ' res = res .. mant .. ', ' .. exp .. ')<br/>' end return res end local package = {} package.Scientific = Scientific package.Engineering = Engineering package.ShortScale = ShortScale package.TableCell = TableCell package.Inline = Inline package.Debug = Debug return package </source> === Custom for Cosmos Quest === This module is custom for Cosmos Quest because the notation is different, re "Exa". {|class="article-table" |- ! Init ! Name ! Engineering |- | k | kilo | 10^3 |- | M | Mega | 10^6 |- | G | Giga | 10^9 |- | T | Tera | 10^12 |- | P | Peta | 10^15 |- | E | Exa | 10^18 |- | Z | Zetta | 10^21 |- | Y | Yotta | 10^24 |- | B | Bronto# | 10^27 |- | a* | (larger) | 10^30 |} <source lang="lua"> -- Item suffixes. local suffixes={'k','M','G','T','P','E','Z','Y','B','aa','ab','ac', 'ad','ae','af','ag','ah','ai','aj','ak','al','am','an','ao','ap', 'aq','ar','as','at','au','av','aw','ax','ay','az','ba','bb','bc', 'bd','be','bf','bg','bh','bi','bj','bk','bl','bm','bn','bo','bp', 'bq','br','bs','bt','bu','bv','bw','bx','by','bz','ca','cb','cc', 'cd','ce','cf','cg','ch','ci','cj','ck','cl','cm','cn','co','cp', 'cq','cr','cs','ct','cu','cv','cw','cx','cy','cz','da','db','dc', 'dd','de','df','dg','dh','di','dj','dk','dl','dm','dn','do','dp', 'dq','dr','ds','dt','du','dv','dw','dx','dy','dz'} local suffixesRev = {} -- Set the #e__ bit. for i = 1, #suffixes do suffixesRev[suffixes[i]:lower()] = ((i + 1) * 3) - 3 end -- Set the original number-and-letter bit. function expToShort(exp) return suffixes[math.floor(exp / 3)] end function shortToExp(short) return suffixesRev[short:lower()] end function decompNum(num) local base, mant, suffix, start, stop local exp = 0 -- Strip whitespace. num = num:gsub('%s', '') --lua stop, no, go home lua you're drunk, that's not a regex start, stop = num:find('%d[%d,]*%.?%d*[eE]?%d*') if (start ~= nil) then if num:sub(#num, #num) == "E" or num:sub(#num, #num) == "e" then stop = stop - 1 end base = num:sub(start, stop) else return end start, stop = num:find('%a+$', stop + 1) if (start ~= nil) then suffix = num:sub(start, stop) end start, stop = base:find('^%d[%d,]*%.?%d*') if (start ~= nil) then mant = base:sub(start, stop) else return end -- Remove all commas. mant = mant:gsub(',', '') start, stop = base:find('[eE]%d*$') if (start ~= nil) then exp = base:sub(start + 1, stop) exp = tonumber(exp) end if (suffix ~= nil) then exp = exp + shortToExp(suffix) end return mant, exp end function normalize(mant, exp) mant = mant:gsub('^0+', '') mant = mant:gsub('%.$', '') local dot = mant:find('%.') or #mant + 1 mant = mant:gsub('[0.]+$', '') if (mant == '') then return '0', 0 end exp = exp + (dot - 2) mant = mant:gsub('%.', '') return mant, exp end function sciSig(mant, sig) if (#mant == 1) then return mant end return mant:sub(1, 1) .. '.' .. mant:sub(2, sig) end function intSig(mant, sig) local res if (#mant >= sig) then res = mant:sub(1, sig) else res = mant .. string.rep('0', sig - #mant) end if (#res <= 3) then return res else local out = res:sub(-3) res = res:sub(1, -4) while (#res > 0) do out = res:sub(-3) .. ',' .. out res = res:sub(1, -4) end return out end end function otherSig(mant, base, exp, sig) mant = mant:sub(1, sig) local res = intSig(mant, exp % base + 1) if (#mant <= base) then return res end return res .. '.' .. mant:sub(exp % base + 2) end function sci(mant, exp) return sciSig(mant, 4) .. '<sub>E</sub>' .. exp end function eng(mant, exp) return otherSig(mant, 3, exp, 4) .. '<sub>E</sub>' .. (exp - exp % 3) end function int(mant, exp) return intSig(mant, exp + 1) end function short(mant, exp) return otherSig(mant, 1, exp, 4) .. '&nbsp;' .. expToShort(exp) --,3 end function Scientific(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp >= 0 and exp < 6) then return ShortScale(frame) else return sci(mant, exp) end end function Engineering(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp >= 0 and exp < 6) then return ShortScale(frame) elseif (exp < 0) then return Scientific(frame) else return eng(mant, exp) end end function ShortScale(frame) mant, exp = normalize(decompNum(frame.args[1])) if (exp < 0) then return Scientific(frame) elseif (exp < 3) then return otherSig(mant, 3, exp, 4) elseif (exp < 6) then return int(mant, exp) else return short(mant, exp) end end function TableCell(frame) short = ShortScale(frame) sci = Scientific(frame) if (short == sci) then return short else return short .. '<br/>' .. sci end end -- Return the text that's gonna go where it needs to go. function Inline(frame) short = ShortScale(frame) sci = Scientific(frame) if (short == sci) then return short else return short .. ' (' .. sci .. ')' end end function Debug(frame) local res = '' for k,v in pairs(frame.args) do mant, exp = normalize(decompNum(v)) res = res .. '<b>' .. k .. '</b>: ' .. v .. '(' .. type(v) .. ', ' res = res .. mant .. ', ' .. exp .. ')<br/>' end return res end local package = {} package.Scientific = Scientific package.Engineering = Engineering package.ShortScale = ShortScale package.TableCell = TableCell package.Inline = Inline package.Debug = Debug return package </source> [[Category:Coding]] [[Category:Wikis]] 0dijwn11cipj1jsgz5pf9sc361h20gy Wireless 0 97 100 2018-03-04T22:03:46Z NoneTheFewer 214879 Created page with "{{stub}} {| class="article-table sortable" ! Acronym/Term ! Spelled Out ! Description |- | OFDM | orthogonal frequency-division multiplexing | OFDM uses several waveforms to ..." 100 wikitext text/x-wiki {{stub}} {| class="article-table sortable" ! Acronym/Term ! Spelled Out ! Description |- | OFDM | orthogonal frequency-division multiplexing | OFDM uses several waveforms to simultaneously carry messages back and forth. Parallel; they don't cross-interact. |- | DSSS | direct-sequence spread spectrum | DSSS combines all available waveforms into one purpose. |- | AP | access point | APs are used by infrastructures to connect a link to the outside world. Wireless devices are on a different subnet from wried devices. |- | BSA | basic service area | With one AP, its footprint is the basic service area. |- | BSS | basic service set | Communication between the one AP above (BSA) and its clients. |- | BSSID | basic service set ID | The MAC address of the wireless AP at the center of your BSS. |- | omnidirectional antenna | | A standard AP uses this antenna to broadcast wireless signal ~360° from the source. |- | directional antenna | | Greater power for less all-round range. |- | Yagi antenna | | A sub-type of directional antenna. Has bars and things. |- | dipole antenna | | Has two signal towers; works omnidirectionally. |- | parabolic antenna | | Directional. Has great power, but isn't used very much. Much like satellite dishes. |- | loop antenna | | Literally it looks like a circle. |- | SSID | service set identifier | Identifies the network that wireless consumers connect to. Does '''''not''''' provide security! It's just a string (<= 32 chars) that IDs the network. It's part of every packet, even. |- | association | | A client connects to an AP. |- | authentication | | Identifies and verifies the client before they can go any further into the network. |- | WEP | Wired Equivalent Privacy | This was intended to live up to its name, to be equivalent to plugging into an Ethernet cable. While it does use RC4 encryption, it's not very good. |} [[Category:Networking]] mqrie5dbr0oiwu4guo8fk5vgy07tvtr Xtinia Wiki 0 3 80 3 2018-03-04T21:24:04Z FANDOM 32769624 FANDOM moved page [[Main Page]] to [[Xtinia Wiki]]: SEO 80 wikitext text/x-wiki <mainpage-leftcolumn-start /> ==Welcome to the Wiki== Welcome to the wiki. We’re a collaborative community website about your topic that anyone, including you, can edit. Click the edit button at the top of any page to get started! ==Describe your topic== Write a description about your topic. Let your readers know what your topic is about and add some general information about it. ==Latest activity== <activityfeed/> <mainpage-endcolumn /> <mainpage-rightcolumn-start /> Photos and videos are a great way to add visuals to your wiki. Add one below! [[File:Placeholder|298px]] <mainpage-endcolumn /> [[Category:Browse]] lrsv6fepmzhchqczu4vy8dtba9oc5fe 3 2018-03-04T21:24:08Z FANDOM 32769624 3 wikitext text/x-wiki <mainpage-leftcolumn-start /> ==Welcome to the Wiki== Welcome to the wiki. We’re a collaborative community website about your topic that anyone, including you, can edit. Click the edit button at the top of any page to get started! ==Describe your topic== Write a description about your topic. Let your readers know what your topic is about and add some general information about it. ==Latest activity== <activityfeed/> <mainpage-endcolumn /> <mainpage-rightcolumn-start /> Photos and videos are a great way to add visuals to your wiki. Add one below! [[File:Placeholder|298px]] <mainpage-endcolumn /> [[Category:Browse]] lrsv6fepmzhchqczu4vy8dtba9oc5fe 86 80 2018-03-04T21:24:15Z NoneTheFewer 214879 86 wikitext text/x-wiki <mainpage-leftcolumn-start /> ==Welcome to the Xtinia Wiki== My own personal-type notes and tips and tricks for computer-based things. ==Describe your topic== Write a description about your topic. Let your readers know what your topic is about and add some general information about it. ==Latest activity== <activityfeed/> <mainpage-endcolumn /> <mainpage-rightcolumn-start /> Photos and videos are a great way to add visuals to your wiki. Add one below! [[File:Placeholder|298px]] <mainpage-endcolumn /> [[Category:Browse]] 1ndmqtdxxqqq3cr8wcdpx9rmmgzb2n0 113 86 2018-03-06T16:14:33Z NoneTheFewer 214879 File added via photo placeholder 113 wikitext text/x-wiki <mainpage-leftcolumn-start /> ==Welcome to the Xtinia Wiki== My own personal-type notes and tips and tricks for computer-based things. ==Describe your topic== Write a description about your topic. Let your readers know what your topic is about and add some general information about it. ==Latest activity== <activityfeed/> <mainpage-endcolumn /> <mainpage-rightcolumn-start /> Photos and videos are a great way to add visuals to your wiki. Add one below! [[File:Mechanical Flower.jpg|thumb|298px|right]] <mainpage-endcolumn /> [[Category:Browse]] 3ixosvpi91q6pywc1xx410tqytv3blz 114 113 2018-03-06T16:16:34Z NoneTheFewer 214879 114 wikitext text/x-wiki <mainpage-leftcolumn-start /> ==Welcome to the Xtinia Wiki== My own personal-type notes and tips and tricks for computer-based things. ==Latest activity== <activityfeed/> <mainpage-endcolumn /> <mainpage-rightcolumn-start /> [[File:Mechanical Flower.jpg|thumb|298px|right|Mechanical Flower ([https://www.creativefan.com/30-lovely-handpicked-flower-desktop-wallapapers/ source])]] <mainpage-endcolumn /> [[Category:Browse]] phxbnpip5ne5hsdfhkwprg63o7ueinj User:Avatar 2 15 15 2018-03-04T21:24:08Z FANDOM 32769624 initial content 15 wikitext text/x-wiki {{w:User:Avatar}} 49t6bl2rahj9nuum2m37xrgu52ao2i8 User:BertH 2 34 34 2018-03-04T21:24:08Z FANDOM 32769624 Created page with "{{Wikia:User:BertH}}" 34 wikitext text/x-wiki {{Wikia:User:BertH}} t3dt5ytlxy838an3w1o86joidsjxz2f User:CreateWiki script 2 28 28 2018-03-04T21:24:08Z FANDOM 32769624 add info since this is now on the home page of all new wikis 28 wikitext text/x-wiki The '''CreateWiki script''' sets up pages on newly [[w:special:createwiki|created wikis]]. For [[help:contents|help]], you can [[Special:Contact|contact Wikia]]. 5lc03nsu8f432u8tf169f79aeb5flzl User:DaNASCAT 2 79 79 2018-03-04T21:24:08Z FANDOM 32769624 FANDOMbot moved page [[User:DaNASCAT]] to [[User:TimmyQuivy]]: Automatically moved page while renaming the user "[[User:DaNASCAT|DaNASCAT]]" to "[[User:TimmyQuivy|TimmyQuivy]]" 79 wikitext text/x-wiki #REDIRECT [[User:TimmyQuivy]] cnf84chjwrqk36yja9sc5vahgqotmo8 User:Default 2 7 7 2018-03-04T21:24:08Z FANDOM 32769624 7 wikitext text/x-wiki This account was used by '''[[w:c:www:About|Wikia]]''' to import the starter content to this wiki in an automated way (some templates, MediaWiki messages, and other essentials). * ''[[Special:Contributions/Default|Contributions]]'' of1pv0q1jhlk5ty9fatqsksa0reqmfy User:Edit page script 2 10 10 2018-03-04T21:24:08Z FANDOM 32769624 10 wikitext text/x-wiki The '''Edit page script''' account is used by Wikia Staff to make automated edits across multiple pages or multiple wikis. If there is a problem with the content of any pages edited by this script, please inform the [[Wikia:Community Team|Community Team]]. * ''[[Special:Contributions/Edit page script|Edit page script contributions]]'' or5m76lk8c9vyosfaq46s6520myvkng User:Kirkburn 2 17 17 2018-03-04T21:24:08Z FANDOM 32769624 Moving comments to [[w:Central Wikia]]. 17 wikitext text/x-wiki {{:w:User:Kirkburn/Who}} 7zrmkhq9gvf1e11uou3hupc2frglebv User:Maintenance script 2 11 11 2018-03-04T21:24:08Z FANDOM 32769624 11 wikitext text/x-wiki The '''Maintenance script''' account is used by [[Help:Community Team|Wikia Staff]] or [[Help:SpamTaskForce|VSTF]] to make automated deletions across multiple pages or multiple wikis. If you feel the script deleted a page it should not have deleted, any [[Special:ListAdmins|admin]] on this wiki can undelete that page. Please inform the [[Wikia:Community Team|Community Team]] about any problems with this script. * ''[[Special:Contributions/Maintenance_script|Maintenance script contributions]]'' nffsx6w5db5f0jrp1kpjvuzapf1si1j User:MediaWiki default 2 8 8 2018-03-04T21:24:08Z FANDOM 32769624 simplify 8 wikitext text/x-wiki This account is used by Wikia Staff when they run the maintenance script <code>rebuildMessages.php</code>. This updates or rebuilds the interface messages to be the same as the MediaWiki default on the Central Wikia wiki. This account is not a bot and cannot be blocked. If there is a problem with the text of the default messages, please inform the [[Wikia:Community Team|Community Support Team]]. * ''[[Special:Contributions/MediaWiki default|Contributions]]'' gmyjk94p2cwrthgpvffkyupzvcr0n41 User:Mighty No. 9 2 35 35 2018-03-04T21:24:08Z FANDOM 32769624 Rappy 4187 moved page [[User:ELEETE]] to [[User:Mighty No. 9]] without leaving a redirect 35 wikitext text/x-wiki {{Wikia:User:ELEETE_starter}} b7qms2d9tpfvi1ev5ndrhrew663gcyy User:Semanticdrifter 2 32 32 2018-03-04T21:24:08Z FANDOM 32769624 32 wikitext text/x-wiki {{Wikia:User:Semanticdrifter}} tb2eqc2hjvju5yxqk8pt09qtu7ktb0v User:TimmyQuivy 2 31 31 2018-03-04T21:24:08Z FANDOM 32769624 FANDOMbot moved page [[User:DaNASCAT]] to [[User:TimmyQuivy]]: Automatically moved page while renaming the user "[[User:DaNASCAT|DaNASCAT]]" to "[[User:TimmyQuivy|TimmyQuivy]]" 31 wikitext text/x-wiki {{wikia::User:DaNASCAT}} qppqdl1wkyuzsydqxxp231qa2a5otkz User:Wikia 2 76 76 2018-03-04T21:24:08Z FANDOM 32769624 Replacing page with '{{int:User Wikia}}' 76 wikitext text/x-wiki {{int:User Wikia}} 523y32wlrciw94v7se887e8h7ugsauc User:Wikia Video Library 2 33 33 2018-03-04T21:24:08Z FANDOM 32769624 Created page with "This account is used by Wikia Staff when they add videos to Wikia from our content partners. If there are any problems with this account on your wiki, please inform the [[Wikia:C..." 33 wikitext text/x-wiki This account is used by Wikia Staff when they add videos to Wikia from our content partners. If there are any problems with this account on your wiki, please inform the [[Wikia:Community Team|Community Support Team]]. b94oayl56pdkciz6n7t7uutudd306ao User:Withersoul 235 2 130 165 2018-04-14T17:59:07Z FANDOM 32769624 Welcome to Xtinia Wiki! 165 wikitext text/x-wiki [[File:Placeholder|thumb|220px]] This is your user page. Please edit this page to tell the community about yourself! ==My favorite pages== * Add links to your favorite pages on the wiki here! * Favorite page #2 * Favorite page #3 ci8rsb6benxy1y136l57pl69jbrcwrt User:Withersoul 235/WAM Log 2 138 176 2018-04-20T20:31:06Z Withersoul 235 24530269 [[w:c:dev:RailWAM|RailWAM]]: Adding new WAM score entry 176 wikitext text/x-wiki <span id="railwam_1524096000" class="railwam-data-element"><span class="railwam_wam">0</span></span> tgrybcg3xv06ljc80f34gkpwsuwunzo Xtinia Wiki:About 4 6 6 2018-03-04T21:24:08Z FANDOM 32769624 that part makes no sense anymore 6 wikitext text/x-wiki ''This page is used to tell visitors all about {{SITENAME}}.'' ''Click the "edit this page" link (above) to start this page and to tell people what this wiki is all about.'' d7273ekthsbbt0kyztu820ms1r3h0on Xtinia Wiki:Copyrights 4 1 1 2018-03-04T21:24:08Z FANDOM 32769624 1 wikitext text/x-wiki Except where otherwise specified, the text on Wikia sites is licensed under the Creative Commons Attribution-Share Alike License 3.0 (Unported) (CC-BY-SA). * [http://creativecommons.org/licenses/by-sa/3.0/ Read the license summary] * [http://creativecommons.org/licenses/by-sa/3.0/legalcode Read the full legal code of the license]. Please see [[w:Wikia:Licensing|Wikia:Licensing]] for details. 184h6kou71fwrz3b41tx9pa3zf3a3b1 Xtinia Wiki:Templates 4 14 14 2018-03-04T21:24:08Z FANDOM 32769624 14 wikitext text/x-wiki There are many '''templates''' in use in {{SITENAME}}; these are only a subset, representing some of the most important and commonly used ones. If you feel that a template belongs on this page, do not hesitate to add it. * [[:Category:Templates]] should cover all templates in the wiki. * The Template namespace (found from [[Special:AllPages]]) always has all templates in the wiki, sorted alphanumerically. == What are templates? == Wiki templates provide a means to insert the same content over and over in different (or the same) pages. This saves editors the hassle of duplicating the same text again and again, and also helps ensure consistency. Templates are generally shown with the format required to use the template (e.g. <code>{{t|delete}}</code>). Clicking the template name takes you to the template's page, where you can see what it looks like and how it is used. '''Detailed instructions on the usage of each template should exist on:''' # '''a subpage using {{t|documentation}}'''; or # the template page itself (inside "noinclude" tags); or # the template's talk page. For more information on templates, see [[Help:Templates]]. == Article management templates == === Nominate an article for deletion === {{t|delete}} * Add this to an article to nominate it for deletion. It will add the article to [[:Category:Candidates for deletion]]. === Disambiguation articles === {{t|disambig}} * If you have several articles that have similar or identical names, you may wish to create a "disambiguation" page at the main article name, with the articles taking an extra phrase in brackets afterwards. For example: : '''The Prince''' <-- disambiguation page, with links to: :: The Prince (frog) :: The Prince (human) * Using {{t|disambig}} marks an article as a disambiguation page by adding a banner to the article and categorizing it under [[:Category:Disambiguations]]. Add links to the various articles under the banner. * For more information, see [[Help:Disambiguation]]. == General wiki templates == === T is for template === {{t|t|template}} * This template allows you to show example template code (with a link to the templates) without using the template itself. It is used extensively on this page. == Where you may find more templates == * [[w:c:templates|Templates Wiki]] * Wikipedia; may be copied with the proper acknowledgment, but some need tweaking to work properly on Wikia, so use a Wikia version if possible. [[Category:Templates| ]] 5tcvfj29r8ift6vm916xvbicion31m1 File:Background.jpg 6 84 87 2018-03-04T21:25:02Z NoneTheFewer 214879 87 wikitext text/x-wiki == Licensing == {{PD}} t2giwvhmud2dpadpyeamqyjhcj449sx File:Example.jpg 6 30 30 2018-03-04T21:24:08Z FANDOM 32769624 [[Category:Images]] 30 wikitext text/x-wiki Cropped and resized from [[Commons:Image:LotusBud0048a.jpg]] *Photographer: [[Commons:User:Fg2|Fg2]] {{PD}} [[Category:Images]] avvqjdicgoj3yc55s2yebigpcgvfh5i File:Favicon.ico 6 86 89 2018-03-04T21:40:54Z NoneTheFewer 214879 89 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 File:Mechanical Flower.jpg 6 104 112 2018-03-06T16:14:32Z NoneTheFewer 214879 112 wikitext text/x-wiki == Licensing == {{PD}} t2giwvhmud2dpadpyeamqyjhcj449sx File:Site-background-dark 6 146 203 2021-07-19T22:41:54Z FANDOMbot 32794352 203 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 204 203 2021-07-19T22:41:54Z 127.0.0.1 Protected "[[File:Site-background-dark]]": Theme designer protected image ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite)) 203 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 File:Site-background-light 6 145 201 2021-07-19T22:41:52Z FANDOMbot 32794352 201 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 202 201 2021-07-19T22:41:53Z 127.0.0.1 Protected "[[File:Site-background-light]]": Theme designer protected image ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite)) 201 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 File:Wiki-background 6 85 88 2018-03-04T21:40:53Z NoneTheFewer 214879 88 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 File:Wiki.png 6 40 40 2018-03-04T21:24:08Z FANDOM 32769624 Maintenance script uploaded a new version of &quot;[[File:Wiki.png]]&quot;: 'SUS-987' 40 wikitext text/x-wiki {{Permission}} [[Category:Images]] myvdpdnm7ir7e2yr3aw7ntgqdazv2wf 85 40 2018-03-04T21:24:11Z FANDOM 32769624 Protected "[[File:Wiki.png]]": Part of the official interface (‎[edit=sysop] (indefinite) ‎[move=sysop] (indefinite) ‎[create=sysop] (indefinite)) 85 wikitext text/x-wiki {{Permission}} [[Category:Images]] myvdpdnm7ir7e2yr3aw7ntgqdazv2wf MediaWiki:Common.css 8 101 105 2018-03-05T16:47:40Z NoneTheFewer 214879 Created page with "/***** CSS placed here will be applied to all skins on the entire site. *****/ pre.de1 { border: 1px solid #ccc; background-color: #f2f2f2; padding: 12px; }" 105 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ pre.de1 { border: 1px solid #ccc; background-color: #f2f2f2; padding: 12px; } 1iv2fg86ynw6ik49wyeatkfq00cx6hp 106 105 2018-03-05T16:48:26Z NoneTheFewer 214879 106 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .source-python pre { border: 1px solid #ccc; background-color: #f2f2f2; padding: 12px; } 4506n0snpmc2gyzreagthtixmpvgrti 107 106 2018-03-05T16:49:11Z NoneTheFewer 214879 107 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .source-python pre, .python.source-python .de1, .python.source-python .de2 { border: 1px solid #ccc; background-color: #f2f2f2; padding: 12px; } en0anvox6wrf8j59zioyerj93brybkt 108 107 2018-03-05T16:50:08Z NoneTheFewer 214879 108 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .source-python pre, .python.source-python .de1, .python.source-python .de2 { border: 1px solid #ccc; background-color: #f2f2f2; padding: 12px; } e6awgwfqwjzj974i98d85s4mhtadfco 111 108 2018-03-05T22:59:26Z NoneTheFewer 214879 111 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .source-python pre, .python.source-python .de1, .python.source-python .de2 { border: 1px solid #ccc !important; background-color: #f2f2f2 !important; padding: 12px !important; } 9rujddj6hjqllnmyudm5gj46palczfo 115 111 2018-03-07T02:41:16Z NoneTheFewer 214879 115 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .source-python pre, .python.source-python .de1, .python.source-python .de2 { border: 1px solid #ccc !important; background-color: #f2f2f2 !important; padding: 12px !important; } .category-gallery { display: none !important; } hol8blnmuer73dag65l2ha6hsfnedel 134 115 2018-03-11T16:36:11Z NoneTheFewer 214879 134 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .mw-geshi pre, .mw-geshi .de1, .mw-geshi .de2 { border: 1px solid #ccc !important; background-color: #f2f2f2 !important; padding: 12px !important; } .category-gallery { display: none !important; } pmn1q5920iig4pc3rrnrw1rqi11h264 135 134 2018-03-11T16:39:33Z NoneTheFewer 214879 135 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .mw-geshi pre, .mw-geshi .de1, .mw-geshi .de2 { border: 1px solid #ccc !important; background-color: #f2f2f2 !important; padding: 12px !important; white-space: pre-wrap !important; } .category-gallery { display: none !important; } on16i93ts49bdyaec12k7k5r96zyzf9 136 135 2018-03-11T16:40:32Z NoneTheFewer 214879 136 css text/css /***** CSS placed here will be applied to all skins on the entire site. *****/ .mw-geshi pre, .mw-geshi .de1, .mw-geshi .de2 { border: 1px solid #ccc !important; background-color: #f2f2f2 !important; padding: 12px !important; white-space: pre-wrap !important; margin-bottom: 12px !important; } .category-gallery { display: none !important; } if3r35x1s6jwl9ysgg39the3eb6kjry MediaWiki:Mainpage 8 81 82 2018-03-04T21:24:06Z FANDOM 32769624 SEO 82 wikitext text/x-wiki Xtinia Wiki 8siarctaw5wp87lfxrfdckyhrzstncw Template:! 10 38 38 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 38 wikitext text/x-wiki <onlyinclude>|</onlyinclude> {{documentation}} 482k5k6o1iym676dzqlo6yfmyo0tlel Template:!! 10 72 72 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 72 wikitext text/x-wiki ||<noinclude> {{documentation}}</noinclude> 9w1l3rx1tksmytabfwcd6ift27gzd42 Template:!!/doc 10 73 73 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 73 wikitext text/x-wiki ;Description :This template is used for creating two pipes, in [[Help:Table|wikitables]] contained in [[Help:Parser functions|Parser functions]]. ;Syntax :Insert this template using <code>{{t|!!}}</code> ;See also :[[m:Template:!!|Template:!!]] on Meta-Wiki. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> mbfsvjrrc7eqir43otdm26o5j3emthc Template:!/doc 10 39 39 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 39 wikitext text/x-wiki ;Description :This template is used for creating a pipe, in [[Help:Table|wikitables]] contained in [[Help:Parser functions|Parser functions]]. ;Syntax :Insert this template using <code>{{t|!}}</code> ;See also :[[m:Template:!|Template:!]] on Meta-Wiki. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 3zct7fcni9xmnquaa3kgq6swshrdugw Template:CC-BY-SA 10 41 41 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 41 wikitext text/x-wiki <div class="color2" id="cc-by-sa" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file is licensed under the [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike License].''''' </div><noinclude> {{documentation}}</noinclude> k04ulcazpl9psu2t67rl8o3b3335kmv Template:CC-BY-SA/doc 10 44 44 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 44 wikitext text/x-wiki ;Description :This template is used to mark images with the CC-BY-SA license. ;Syntax :Type <code>{{t|CC-BY-SA}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> aot9hw4d4mgiyyscurz5ac65b99vead Template:Cc-by-sa-3.0 10 16 16 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 16 wikitext text/x-wiki {| class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:2px solid #88A;" |- | align="center" |http://images.wikia.com/messaging/images//thumb/7/79/CC_some_rights_reserved.svg/90px-CC_some_rights_reserved.svg.png<br />http://images.wikia.com/messaging/images//thumb/1/11/Cc-by_new_white.svg/24px-Cc-by_new_white.svg.png http://images.wikia.com/messaging/images//thumb/d/df/Cc-sa_white.svg/24px-Cc-sa_white.svg.png | '''''This work is licensed under the Creative Commons [http://creativecommons.org/licenses/by-sa/3.0/ <span style="color:#002bb8;">Attribution-ShareAlike 3.0</span>] License.<br />{{#if:{{{1|}}}|<br />Attribution: {{{1|}}}}}''''' |}<noinclude> {{documentation}}</noinclude> apvf0ipupf207jau14nu4ihkkgoqkpa Template:Cc-by-sa-3.0/doc 10 26 26 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 26 wikitext text/x-wiki ;Description :This template is used to mark images with the [http://creativecommons.org/licenses/by-sa/3.0/ CC-BY-SA-3.0] license. ;Syntax :Type <code>{{t|cc-by-sa-3.0|attribution details}}</code> on the image information page. :Replace "<code>attribution details</code>" with information about the source. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> hrfq26c3oykd4efvfnfqeg00ydloewz Template:Delete 10 48 48 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 48 wikitext text/x-wiki <div name="Deletion notice" class="boilerplate metadata" id="delete" style="background-color:#fee; margin:1em; padding:5px 10px; border:1px solid #aaa;"> '''This page is a candidate for deletion.''' ''Remember to check [[Special:Whatlinkshere/{{FULLPAGENAME}}|what links here]] and [{{fullurl:{{FULLPAGENAME}}|action=history}} the page history] before deletion.''</div><includeonly>[[Category:Candidates for deletion]]</includeonly><noinclude> {{documentation}}</noinclude> cuf93rpdth5ijsd8c024rjge624fs32 Template:Delete/doc 10 47 47 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 47 wikitext text/x-wiki ;Description :This template is used to mark pages for deletion, categorizing them in [[:Category:Candidates for deletion]]. ;Syntax :Type <code>{{t|delete}}</code> on the page to be deleted.''' <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> q5ufecdlvxt096wtqf44vy2afa30c8n Template:Disambig 10 50 50 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 50 wikitext text/x-wiki <div name="Disambiguation notice" class="boilerplate metadata" id="disambig" style="background-color: #eef; margin: 0 1em; padding: 0 10px; border: 1px solid #aaa;"> '''This article is a disambiguation page for {{PAGENAME}}''' The following is a list of links to pages that might share the same title.<br/> Please follow one of the disambiguation links below or [[Special:Search|search]] to find the page you were looking for if it is not listed. If an [[Special:Whatlinkshere/{{FULLPAGENAME}}|internal link]] led you here, you may wish to change the link to point directly to the intended article. </div><includeonly>[[Category:Disambiguations]]</includeonly><noinclude> {{documentation}}</noinclude> 600jt8jdvls8xx6v2acv6hnpubhoqu0 Template:Disambig/doc 10 49 49 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 49 wikitext text/x-wiki ;Description :Marks an article as a disambiguation page, adding a banner to the article and categorizing it under [[:Category:Disambiguations]]. :Articles using this template will also appear on [[Special:Disambiguations]]. ;Syntax :Add <code>{{t|disambig}}</code> at the top of a disambiguation page. <includeonly>[[Category:Templates|Disambiguation]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> hqlr92c995b2je1grwsmqjp4nsoqyyp Template:Documentation 10 18 18 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 18 wikitext text/x-wiki <includeonly>{| class="article-table" style="width:100%;" role="complementary" |- style="font-size:18px;" ! style="padding:0px;" | <div style="width:100%; padding:3px 0px; text-align:center;" class="color1">Template documentation</div> |- | ''Note: portions of the template sample may not be visible without values provided.'' |- | View or edit [[Template:{{PAGENAMEE}}/doc|this documentation]]. ([[Template:Documentation|About template documentation]]) |- | Editors can experiment in this template's [{{fullurl:{{FULLPAGENAMEE}}/Draft|action=edit}} sandbox] and [{{fullurl:{{FULLPAGENAMEE}}/testcases}} test case] pages. |} <div style="margin:0 1em;"> {{{{{1|{{PAGENAME}}/doc}}}}}</div></includeonly><noinclude>{{Documentation}}[[Category:Template documentation| ]]</noinclude> tdl6cc52xvlx3x9ubwx9k7l7brds8fb Template:Documentation/doc 10 20 20 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 20 wikitext text/x-wiki ==Description== This template is used to insert descriptions on template pages. ==Syntax== Add <code><nowiki><noinclude></nowiki>{{t|documentation}}<nowiki></noinclude></nowiki></code> at the end of the template page. Add <code><nowiki><noinclude></nowiki>{{t|documentation|documentation page}}<nowiki></noinclude></nowiki></code> to transclude an alternative page from the /doc subpage. ==Usage== ===On the Template page=== This is the normal format when used: <pre> TEMPLATE CODE<includeonly>Any categories to be inserted into articles by the template</includeonly><noinclude> {{documentation}}</noinclude> </pre> ''If your template is not a completed div or table, you may need to close the tags just before <code><nowiki>{{documentation}}</nowiki></code> is inserted (within the noinclude tags).'' ''A line break right before <code><nowiki>{{documentation}}</nowiki></code> can also be useful as it helps prevent the documentation template "running into" previous code.'' ===On the documentation page=== The documentation page is usually located on the /doc subpage for a template, but a different page can be specified with the first parameter of the template (see [[#Syntax|Syntax]]). Normally, you will want to write something like the following on the documentation page: <pre> ==Description== This template is used to do something. ==Syntax== Type <code>{{t|templatename}}</code> somewhere. ==Samples== <code>&lt;nowiki>{{templatename|input}}&lt;/nowiki></code> results in... {{templatename|input}} <includeonly>Any categories for the template itself</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> </pre> Use any or all of the above description/syntax/sample output sections. You may also want to add "see also" or other sections. Note that the above example also uses the [[Template:T]] and [[Template:T/piece]] templates. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 0asqkoffvtsszcezyfm9tcgvcvviy3x Template:Fairuse 10 5 5 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 5 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file is copyrighted. It will be used in a way that qualifies as fair use under US copyright law.''''' </div><noinclude> {{documentation}}</noinclude> kwz01imtg9h8cxowpjryt5fjl5po8ae Template:Fairuse/doc 10 23 23 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 23 wikitext text/x-wiki ;Description :This template is used to mark images as fair use. ;Syntax :Type <code>{{t|fairuse}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> pt19oag3drdc7wx8k79hwqtpi2f8bxz Template:From Wikimedia 10 45 45 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 45 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file was originally uploaded on Wikipedia or another Wikimedia project.''''' </div><noinclude> {{documentation}}</noinclude> noadqmces8zonw238sdajdnlwyqn21s Template:From Wikimedia/doc 10 46 46 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 46 wikitext text/x-wiki ;Description :This template is used to mark images as having been uploaded on [[wikipedia:|Wikipedia]] or another [[wikimedia:|Wikimedia]] project. ;Syntax :Type <code>{{t|From Wikimedia}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 4oxdjrlprk0ofdw8zhmsux32eo398qd Template:Infobox album 10 64 64 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 64 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="artist"><label>Artist</label></data> <data source="released"><label>Released</label></data> <data source="recorded"><label>Recorded</label></data> <data source="length"><label>Length</label></data> <data source="label"><label>Label</label></data> <data source="producer"><label>Producer</label></data> </infobox><includeonly>[[Category:Albums]]</includeonly><noinclude>{{Documentation}}</noinclude> 8khoecs4yt917hhsbeci22vw41botds Template:Infobox album/doc 10 63 63 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 63 wikitext text/x-wiki ==Description== To use this template, enter the following and fill in the appropriate fields. Most fields left blank will not show up. Don't forget to include brackets, to make the fields into links. ==Syntax== <pre> {{infobox album | title = | image = [e.g. "Example.jpg"] | imagecaption = | artist = | released = | recorded = | length = | label = | producer = }} </pre> ==Samples== {{infobox album | title = Fleur | image = Example.jpg | artist = Marigold | released = June 2012 | recorded = 2011 | length = 88:88 | label = Spring | producer = Daffy }} <pre> {{infobox album | title = Fleur | image = Example.jpg | artist = Marigold | released = June 2012 | recorded = 2011 | length = 88:88 | label = Spring | producer = Daffy }} </pre><includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> pxpfsvkdql29utgja9lwj2x986sjaec Template:Infobox book 10 53 53 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 53 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="author"><label>Author</label></data> <data source="illustrator"><label>Illustrator</label></data> <data source="datePublished"><label>Published on</label></data> <data source="publisher"><label>Publisher</label></data> <group layout="horizontal"> <header>Publication order</header> <data source="previous"><label>Previous</label></data> <data source="next"><label>Next</label></data> </group> </infobox><includeonly>[[Category:Books]]</includeonly><noinclude>{{Documentation}}</noinclude> h28dt4u0jniqgyz88w6zwspo9vzrg0d Template:Infobox book/doc 10 51 51 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 51 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre>{{infobox box | title = | image = [e.g. "Example.jpg"] | author = | illustrator = | datePublished = | publisher = | previous = | next = }}</pre> ==Sample output== {{infobox book | title = The Adventures of Flower | image = Example.jpg | author = Alice | illustrator = Bob | datePublished = April 1928 | publisher = Arthur's | previous = Book One | next = Book Three }} <pre>{{infobox book | title = The Adventures of Flower | image = Example.jpg | author = Alice | illustrator = Bob | datePublished = April 1928 | publisher = Arthur's | previous = Book One | next = Book Three }}</pre> <includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 700xfm4ikbyx0ul5aaovv99r8n2v1if Template:Infobox character 10 62 62 2018-03-04T21:24:08Z FANDOM 32769624 62 wikitext text/x-wiki <infobox> <title source="name"/> <image source="image"> <caption source="imagecaption" /> </image> <group> <data source="aliases"><label>Aliases</label></data> <data source="relatives"><label>Relatives</label></data> <data source="affiliation"><label>Affiliation</label></data> </group> <group> <header>Biographical information</header> <data source="marital"><label>Marital status</label></data> <data source="birthDate"><label>Date of birth</label></data> <data source="birthPlace"><label>Place of birth</label></data> <data source="deathDate"><label>Date of death</label></data> <data source="deathPlace"><label>Place of death</label></data> </group> <group> <header>Physical description</header> <data source="species"><label>Species</label></data> <data source="gender"><label>Gender</label></data> <data source="height"><label>Height</label></data> <data source="weight"><label>Weight</label></data> <data source="eyes"><label>Eye color</label></data> </group> </infobox><includeonly>[[Category:Characters]]</includeonly><noinclude>{{Documentation}}</noinclude> lxb19p5b8l8eelwfd08dcpkvq1svhqu Template:Infobox character/doc 10 59 59 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 59 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre> {{infobox character | name = | image = | caption = | aliases = | affiliation = | marital = | birthDate = | birthPlace = | deathDate = | deathPlace = | species = | gender = | height = | weight = | eyes = }} </pre> ==Samples== {{infobox character | name = Flowa | image = Example.jpg | caption = Flowa, at rest | aliases = Flo | affiliation = | marital = | birthDate = July 21st, 2013 | birthPlace = Iowa | deathDate = | deathPlace = | species = Plant | gender = | height = | weight = | eyes = }} <pre> {{infobox character | name = Flowa | image = Example.jpg | caption = Flowa, at rest | aliases = Flo | affiliation = | marital = | birthDate = July 21st, 2013 | birthPlace = Iowa | deathDate = | deathPlace = | species = Plant | gender = | height = | weight = | eyes = }} </pre> <includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> heijmbek9eiyb7lzndua3xelewbal1e Template:Infobox episode 10 54 54 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 54 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="partOfSeason"><label>Season</label></data> <data source="episodeNumber"><label>Episode</label></data> <data source="airDate"><label>Air date</label></data> <data source="writer"><label>Writer</label></data> <data source="director"><label>Director</label></data> <group layout="horizontal"> <header>Episode guide</header> <data source="previousEpisode"><label>Previous</label></data> <data source="nextEpisode"><label>Next</label></data> </group> </infobox><includeonly>[[Category:Episodes]]</includeonly><noinclude>{{Documentation}}</noinclude> iwv7hvnd4ux3z319pp4r1d9q4b47ykx Template:Infobox episode/doc 10 52 52 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 52 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre>{{infobox episode | title = | partOfSeason = | episodeNumber = | image = [e.g. "Example.jpg"] | airdate = | writer = | director = | previousEpisode = | nextEpisode = }}</pre> ==Sample output== {{infobox episode | title = Flower of Babel | partOfSeason = One | episodeNumber = Three | image = Example.jpg | airdate = Unaired | writer = D. Righta | director = A. di Rektour | previousEpisode = Episode Two | nextEpisode = Episode Four }}<pre>{{infobox episode | title = Flower of Babel | partOfSeason = One | episodeNumber = Three | image = Example.jpg | airdate = Unaired | writer = D. Righta | director = A. di Rektour | previousEpisode = Episode Two | nextEpisode = Episode Four }}</pre> <includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> iymme36gzb59ye8rro011fk781s8eei Template:Infobox event 10 74 74 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 74 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="performers"><label>Performers</label></data> <data source="date"><label>Date</label></data> <data source="location"><label>Location</label></data> </infobox><includeonly>[[Category:Events]]</includeonly><noinclude>{{Documentation}}</noinclude> 3z1k7bytkr6hryueqk2da5zb6ycten6 Template:Infobox event/doc 10 75 75 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 75 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre> {{infobox event | title = | image = [e.g. "Example.jpg"] | imagecaption = | performers = | date = | location = }} </pre> ==Samples== {{infobox event | title = Flower du Jour | image = Example.jpg | performers = Awesome Ones | date = All the time | location = Everywhere }} <pre> {{infobox event | title = Flower du Jour | image = Example.jpg | performers = Awesome Ones | date = All the time | location = Everywhere }} </pre><includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 2g2nywb4twx8nc7z1eve1q04xvcaje7 Template:Infobox item 10 57 57 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 57 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="type"><label>Type</label></data> <data source="effects"><label>Effects</label></data> <data source="source"><label>Source</label></data> <data source="buy"><label>Cost to buy</label></data> <data source="sell"><label>Cost to sell</label></data> </infobox><includeonly>[[Category:Items]]</includeonly><noinclude>{{Documentation}}</noinclude> 3jw03to6tc9qvqrja4neog4h50v3tle Template:Infobox item/doc 10 56 56 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 56 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre> {{infobox item | title = | image = [e.g. "Example.jpg"] | imagecaption = | type = | effects = | source = | buy = | sell = }} </pre> ==Samples== {{infobox item | title = Power Flower | image = Example.jpg | type = Food | effects = +1 Fire | source = Vendor | buy = 5g | sell = 1g }}<pre> {{infobox item | title = Power Flower | image = Example.jpg | type = Food | effects = +1 Fire | source = Vendor | buy = 5g | sell = 1g }} </pre><includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> rvf9hey4pgic9qy21k7m4zprw4ckmwr Template:Infobox location 10 61 61 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 61 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <image source="map"><caption source="mapcaption"/></image> <data source="type"><label>Type</label></data> <data source="level"><label>Level</label></data> <data source="location"><label>Location</label></data> <data source="inhabitants"><label>Inhabitants</label></data> </infobox><includeonly>[[Category:Locations]]</includeonly><noinclude>{{Documentation}}</noinclude> bvrimp1y7cq9ggij39zjid9h9kbc3kf Template:Infobox location/doc 10 60 60 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 60 wikitext text/x-wiki ==Description== To use this template, copy the following code and fill in the appropriate fields. ==Syntax== <pre> {{infobox location | title = | image = [e.g. "Example.jpg"] | imagecaption = | map = [e.g. "Example.jpg"] | mapcaption = | type = | level = | location = | inhabitants = }} </pre> ==Samples== {{infobox location | title = Flora Island | image = Example.jpg | imagecaption = The island | map = Example.jpg | mapcaption = Zone map | type = Contested | level = 1-5 | location = Earth | inhabitants = Stompy Humans, Drinky Bees }}<pre> {{infobox location | title = Flora Island | image = Example.jpg | imagecaption = The island | map = Example.jpg | mapcaption = Zone map | type = Contested | level = 1-5 | location = Earth | inhabitants = Stompy Humans, Drinky Bees }} </pre><includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> m6e3wvc984c78x17wgaavyxrk6sjzxp Template:Infobox quest 10 58 58 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 58 wikitext text/x-wiki <infobox> <title source="title"/> <image source="image"><caption source="imagecaption"/></image> <data source="start"><label>Start</label></data> <data source="end"><label>End</label></data> <data source="prerequisites"><label>Prerequisites</label></data> <data source="level"><label>Level</label></data> <data source="location"><label>Location</label></data> <data source="rewards"><label>Rewards</label></data> <group layout="horizontal"> <header>Quest progression</header> <data source="previous"><label>Previous</label></data> <data source="next"><label>Next</label></data> </group> </infobox><includeonly>[[Category:Quests]]</includeonly><noinclude>{{Documentation}}</noinclude> h5c1r9le1g8b0e35rr3p4pvbqyvcb4q Template:Infobox quest/doc 10 55 55 2018-03-04T21:24:08Z FANDOM 32769624 55 wikitext text/x-wiki {{infobox quest | title = Example infobox | image = Example.jpg | start = Chrys | end = Geran | prerequisites = None | level = 5 | location = Earth | rewards = Justice-Wrought Petals | previous = A | next = C }} ==Description== To use this template, copy the following code and fill in the appropriate fields. To add a field, use [[Special:InfoboxBuilder]] or follow the steps seen at [[:Template:Infobox]]. ==Syntax== <pre> {{infobox quest | title = | image = [e.g. "Example.jpg"] | imagecaption = | start = | end = | prerequisites = | level = | location = | rewards = | previous = | next = }} </pre> <includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Infobox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> d2ids2uofaqiaxqlxrm3cdhm9iyk617 Template:Key 10 114 130 2018-03-11T16:26:31Z NoneTheFewer 214879 Created page with "<includeonly><code>{{#ifeq: {{{1|}}} | up | ↑ | {{#ifeq: {{{1|}}} | enter | ↵ | {{#ifeq: {{{1|}}} | return | ↵ | {{{1|}}} }} }} }}</code></includeonly> <noinclude>To use..." 130 wikitext text/x-wiki <includeonly><code>{{#ifeq: {{{1|}}} | up | ↑ | {{#ifeq: {{{1|}}} | enter | ↵ | {{#ifeq: {{{1|}}} | return | ↵ | {{{1|}}} }} }} }}</code></includeonly> <noinclude>To use: <pre><nowiki>{{Key|M}}</nowiki></pre> becomes: {{Key|M}} de1yxz0vdeag3n5wwlvir131arc72re 131 130 2018-03-11T16:31:26Z NoneTheFewer 214879 131 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 2px; border-color: #CCC #999 #999 #CCC; padding: 0 3px; background-color: #BBB; font-weight: bold;">{{#ifeq: {{{1|}}} | up | ↑ | {{#ifeq: {{{1|}}} | enter | ↵ | {{#ifeq: {{{1|}}} | return | ↵ | {{{1|}}} }} }} }}</code></includeonly> <noinclude>To use: <pre><nowiki>{{Key|M}}</nowiki></pre> becomes: {{Key|M}} 42zngomaukur7sq0ftgd95skbf39uo1 132 131 2018-03-11T16:31:57Z NoneTheFewer 214879 132 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 2px; border-color: #CCC #999 #999 #CCC; padding: 0 3px; background-color: #BBB; font-weight: bold;">{{#ifeq: {{{1|}}} | up | ↑ | {{#ifeq: {{{1|}}} | enter | ↵ | {{#ifeq: {{{1|}}} | return | ↵ | {{{1|}}} }} }} }}</code></includeonly> <noinclude>To use: <pre><nowiki>{{Key|M}}</nowiki></pre> becomes: {{Key|M}}</noinclude> sdmfstifslut6abojeh93zg4odnqy30 133 132 2018-03-11T16:33:35Z NoneTheFewer 214879 133 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 2px; border-color: #CCC #999 #999 #CCC; padding: 0 3px; background-color: #BBB; font-weight: bold;">{{#ifeq: {{{1|}}} | up | ↑ | {{#ifeq: {{{1|}}} | enter | ↵ | {{#ifeq: {{{1|}}} | return | ↵ | {{{1|}}} }} }} }}</code></includeonly> 6p2ylflq5ivq80zn1jzv9hxmdru0anp 153 133 2018-04-05T13:18:59Z NoneTheFewer 214879 153 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 2px; border-color: #CCC #AAA #AAA #CCC; padding: 0 3px; background-color: #DDDDE0; font-weight: bold;">{{#ifeq: {{lc:{{{1|}}}}} | up | ↑ | {{#ifeq: {{lc:{{{1|}}}}} | enter | ↵ | {{#ifeq: {{lc:{{{1|}}}}} | return | ↵ | {{#ifeq: {{lc:{{{1|}}}}} | left | ← | {{#ifeq: {{lc:{{{1|}}}}} | down | ↓ | {{#ifeq: {{lc:{{{1|}}}}} | right | → | {{#ifeq: {{lc:{{{1|}}}}} | command | ⌘ | {{#ifeq: {{lc:{{{1|}}}}} | shift | ⇧ | {{#ifeq: {{lc:{{{1|}}}}} | option | ⌥ | {{#ifeq: {{lc:{{{1|}}}}} | control | ⌃ | {{#ifeq: {{lc:{{{1|}}}}} | caps | ⇪ | {{#ifeq: {{lc:{{{1|}}}}} | caps lock | ⇪ | {{{1|}}} }} }} }} }} }} }} }} }} }} }} }} }}</code></includeonly> lvrgen3la2z68heb512grllc0xkw2ax 155 153 2018-04-05T13:19:38Z NoneTheFewer 214879 155 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 1px; border-color: #CCC #AAA #AAA #CCC; padding: 0 3px; background-color: #DDDDE0; font-weight: bold;">{{#ifeq: {{lc:{{{1|}}}}} | up | ↑ | {{#ifeq: {{lc:{{{1|}}}}} | enter | ↵ | {{#ifeq: {{lc:{{{1|}}}}} | return | ↵ | {{#ifeq: {{lc:{{{1|}}}}} | left | ← | {{#ifeq: {{lc:{{{1|}}}}} | down | ↓ | {{#ifeq: {{lc:{{{1|}}}}} | right | → | {{#ifeq: {{lc:{{{1|}}}}} | command | ⌘ | {{#ifeq: {{lc:{{{1|}}}}} | shift | ⇧ | {{#ifeq: {{lc:{{{1|}}}}} | option | ⌥ | {{#ifeq: {{lc:{{{1|}}}}} | control | ⌃ | {{#ifeq: {{lc:{{{1|}}}}} | caps | ⇪ | {{#ifeq: {{lc:{{{1|}}}}} | caps lock | ⇪ | {{{1|}}} }} }} }} }} }} }} }} }} }} }} }} }}</code></includeonly> fr54rom5olaw3ngstu9hdznuxwspewr 195 155 2018-06-27T13:51:23Z NoneTheFewer 214879 195 wikitext text/x-wiki <includeonly><code style="border-style: solid; border-width: 1px; border-color: #CCC #AAA #AAA #CCC; padding: 0 3px; background-color: #DDDDE0; font-weight: bold;">{{#ifeq: {{lc:{{{1|}}}}} | up | ↑ | {{#ifeq: {{lc:{{{1|}}}}} | enter | <span title="Enter">↵</span> | {{#ifeq: {{lc:{{{1|}}}}} | return | ↵ | {{#ifeq: {{lc:{{{1|}}}}} | left | ← | {{#ifeq: {{lc:{{{1|}}}}} | down | ↓ | {{#ifeq: {{lc:{{{1|}}}}} | right | → | {{#ifeq: {{lc:{{{1|}}}}} | command | ⌘ | {{#ifeq: {{lc:{{{1|}}}}} | shift | ⇧ | {{#ifeq: {{lc:{{{1|}}}}} | option | <span title="Option">⌥</span> | {{#ifeq: {{lc:{{{1|}}}}} | control | <span title="Control">⌃</span> | {{#ifeq: {{lc:{{{1|}}}}} | caps | <span title="Caps">⇪</span> | {{#ifeq: {{lc:{{{1|}}}}} | caps lock | ⇪ | {{{1|}}} }} }} }} }} }} }} }} }} }} }} }} }}</code></includeonly> tlvbafrtawkjzi2126u4yrp7luoig1q Template:MacKeys 10 122 152 2018-04-05T13:08:00Z NoneTheFewer 214879 Created page with "[https://support.apple.com/en-us/HT201236 macOS keys guide]: {|class="article-table" | Command | ⌘ |- | Shift|| ⇧ |- | Option|| ⌥ |- | Control|| ⌃ |- | Caps Lock||..." 152 wikitext text/x-wiki [https://support.apple.com/en-us/HT201236 macOS keys guide]: {|class="article-table" | Command | ⌘ |- | Shift|| ⇧ |- | Option|| ⌥ |- | Control|| ⌃ |- | Caps Lock|| ⇪ |- | Fn|| |} kio8u6d6nkv9gaglp7qtjbni8ql4rpm 154 152 2018-04-05T13:19:05Z NoneTheFewer 214879 154 wikitext text/x-wiki [https://support.apple.com/en-us/HT201236 macOS keys guide]: {|class="article-table" | Command | {{Key|⌘}} |- | Shift | {{Key|⇧}} |- | Option | {{Key|⌥}} |- | Control | {{Key|⌃}} |- | Caps Lock | {{Key|⇪}} |- | Fn | |} 7sngroecom3b77hhq6apu9d0e85t1lr Template:Navbox 10 66 66 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 66 wikitext text/x-wiki {| style="width:100%; margin-top:1em; border:1px solid #999; font-size:90%; text-align:center;" |- ! style="padding:0.2em 0.5em;" nowrap="nowrap" class="color1" | {{{header}}} |- | style="padding:0.2em 0.5em;" | {{{body}}} |}<noinclude> {{documentation}}</noinclude> 3xkfiaf5hr2cfvrz4dyzao8xl6lsfww Template:Navbox/doc 10 65 65 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 65 wikitext text/x-wiki ;Description :This template is used to create a basic navigation box. You can do so by calling the template, via the steps under "Syntax", but it is recommended to '''copy the code verbatim''' via the steps under "Navbox Creation". ;Navbox Creation <createbox> prefix=Template: preload=Template:Navbox editintro=Template:Navbox/doc buttonlabel=Make your navbox! default = Navbox Foo </createbox> #Think of a name for your navbox, like "Navbox Foo". Type it in the above field, press the button, and save the page immediately. Be ready to return to ''this'' page to see the rest of the instructions. #Edit the resulting page in source mode. #Replace <code>{{{header}}}</code> with the text you would like to appear in the header. #Replace <code>{{{body}}}</code> with the text you would like to appear in the body. #To add another section, copy these four lines of code immediately below the lines in the existing code that they resemble: <pre>|- ! style="padding:0.2em 0.5em;" nowrap="nowrap" class="color1" | {{{header}}} |- | style="padding:0.2em 0.5em;" | {{{body}}}</pre> Save the page once you have added as many sections as you needed, and filled them with content. You may also want to create a /doc subpage explaining that to call the resulting template, one must only type <code>{<nowiki/>{Navbox Foo}}</code>, or rather, whatever we decided to name the template in step 1. ;Syntax <pre>{{navbox |header=Land of Bob |body=This <nowiki>[[place]]</nowiki> and that <nowiki>[[place]]</nowiki>. }}</pre> :Results in... {{navbox |header=Land of Bob |body=This <nowiki>[[place]]</nowiki> and that <nowiki>[[place]]</nowiki>. }} <includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Navbox|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 97glr7dydvlwxiiq6jffdazymdzq5yq Template:Other free 10 42 42 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 42 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file is licensed under a free license.''''' </div><noinclude> {{documentation}}</noinclude> blbx1e8uig8l7uwcw0ujfd03quz5cp8 Template:Other free/doc 10 43 43 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 43 wikitext text/x-wiki ;Description :This template is used to mark images with a free license not covered by other image templates. ;Syntax :Type <code>{{t|Other free}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 2fexkneznrobyg4jhnuwg0m6omdqieo Template:PD 10 4 4 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 4 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file is in the public domain''''' </div><noinclude> {{documentation}}</noinclude> g8mloy93d3el2a56qw883olbaaytr79 Template:PD/doc 10 27 27 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 27 wikitext text/x-wiki ;Description :This template is used to mark images as being in the public domain. ;Syntax :Type <code>{{t|PD}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> dabi1zsu7bc04rxxfp4xyg8we0ldliq Template:Permission 10 12 12 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 12 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file is copyrighted. The copyright holder has given permission for its use.''''' </div><noinclude> {{documentation}}</noinclude> 65a8iyjax8sy29ukaqs4jcz5j293rrf Template:Permission/doc 10 24 24 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 24 wikitext text/x-wiki ;Description :This template is used to mark images as being copyrighted, but the copyright holder has given permission for its use. ;Syntax :Type <code>{{t|permission}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> pbnt6x3645efifp9jzn3efnyu82nhcv Template:Quote 10 77 77 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 77 wikitext text/x-wiki <blockquote class="quote">"''{{{quote|{{{1}}}}}}''" {{#if:{{{speaker|{{{2|}}}}}}|<cite>― {{{speaker|{{{2}}}}}}{{#if:{{{source|{{{3|}}}}}}|<sup class="noprint">[[{{{source|{{{3}}}}}}|[source]]]</sup>}}</cite>}}</blockquote><noinclude>{{Documentation}}</noinclude> tgpkqdjetj1bfq98v0u96wq5rgv56db Template:Quote/doc 10 78 78 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 78 wikitext text/x-wiki ==Description== To use this template, enter the following and fill in the appropriate fields. Most fields left blank will not show up. ==Syntax== <pre> {{Quote | quote = | speaker = | source = }} </pre> As an alternative, these can be placed in positional order. ==Samples== {{Quote | quote = When you play the game of thrones, you win or you die. | speaker = [[w:c:gameofthrones:Cersei Lannister|Cersei Lannister]] | source = w:c:gameofthrones:You Win or You Die }} <pre> {{Quote | quote = When you play the game of thrones, you win or you die. | speaker = [[w:c:gameofthrones:Cersei Lannister|Cersei Lannister]] | source = w:c:gameofthrones:You Win or You Die }} </pre> or <pre> {{Quote | When you play the game of thrones, you win or you die. | [[w:c:gameofthrones:Cersei Lannister|Cersei Lannister]] | w:c:gameofthrones:You Win or You Die }} </pre><includeonly>[[Category:Templates|{{PAGENAME}}]][[Category:Templates/Quote|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> sj3ul7q0u9s7z454hkgn24lt86rcb3t Template:Self 10 13 13 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 13 wikitext text/x-wiki <div class="color2" id="c-fairuse" style="width:90%; margin:0 auto; padding:10px; border:1px solid #A8ACA8;"> '''''This file was uploaded by the photographer or author.''''' </div><noinclude> {{documentation}}</noinclude> lf83v50vvx1nwnupqkve85oo992y9by Template:Self/doc 10 25 25 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 25 wikitext text/x-wiki ;Description :This template is used to mark images as having been uploaded by the photographer or author. ;Syntax :Type <code>{{t|self}}</code> on the image information page. <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> 135dq46ihrkcwpoyai852cxqf2dbsc0 Template:Softwarebox 10 109 123 2018-03-10T14:11:26Z NoneTheFewer 214879 Created page with "<infobox> <title source="title1"> <default>{{PAGENAME}}</default> </title> <image source="image1"> <caption source="caption1"/> </image> <data source="homepa..." 123 wikitext text/x-wiki <infobox> <title source="title1"> <default>{{PAGENAME}}</default> </title> <image source="image1"> <caption source="caption1"/> </image> <data source="homepage"> <label>Homepage</label> </data> <data source="oses"> <label>OSes</label> </data> <data source="interface"> <label>Interface</label> </data> <data source="cost"> <label>Cost</label> </data> <data source="version"> <label>Version</label> </data> <data source="last_updated"> <label>Last updated</label> </data> </infobox> <noinclude> Example usage:<pre> {{Softwarebox |title1=Example |image1=Example |caption1=Example |homepage=Example |oses=Example |interface=Example |cost=Example |version=Example |last_updated=Example }} </pre> </noinclude> lglhf96yt08qmxxbqkkagubk4x1u8vi 124 123 2018-03-10T14:13:14Z NoneTheFewer 214879 124 wikitext text/x-wiki <infobox> <title source="title1"> <default>{{PAGENAME}}</default> </title> <image source="image1"> <caption source="caption1"/> </image> <data source="homepage"> <label>Homepage</label> </data> <data source="oses"> <label>OSes</label> </data> <data source="interface"> <label>Interface</label> </data> <data source="cost"> <label>Cost</label> </data> <data source="version"> <label>Version</label> </data> <data source="last_updated"> <label>Last updated</label> </data> </infobox> <includeonly>[[Category: Software]]</includeonly> <noinclude> Example usage:<pre> {{Softwarebox |title1=Example |image1=Example |caption1=Example |homepage=Example |oses=Example |interface=Example |cost=Example |version=Example |last_updated=Example }} </pre> </noinclude> cmia14sdbynrcw6oqjoif21lkdc4riv Template:StructuredQuote 10 148 207 2024-08-29T10:30:25Z FANDOMbot 32794352 Imported default template 207 wikitext text/x-wiki {| style="border-radius: 10px; margin: 0 auto;" class="cquote" | width="15" valign="top" style="color: var(--theme-link-color); font-size: 36px; font-family: 'Times New Roman', serif; font-weight: bold; text-align: left; padding: 10px;" | “ | style="padding: 4px 2px; font-style: italic;" | {{{text|Text...}}} | width="15" valign="bottom" style="color: var(--theme-link-color); font-size: 36px; font-family: 'Times New Roman', serif; font-weight: bold; text-align: right; padding: 10px;" | ” |- {{#if: {{{speaker|}}}{{{receiver|}}}{{{attribution|}}}{{{source|}}}| {{!}} colspan="4" style="padding-top: 0.1em" {{!}} {{#if:{{{speaker|}}}|<p style="text-align: right"><cite>—{{{speaker}}}{{#if:{{{receiver|}}}|, to {{{receiver|}}}}}{{#if:{{{attribution|}}}|, {{{attribution|}}}}}{{#if:{{{source|}}}|, {{{source|}}}}}</cite></p>}} }} |} <noinclude>{{Documentation}}</noinclude> 7p881bc8bucoleu5jlw1ob89uxv3flb 208 207 2024-10-22T03:42:10Z FANDOMbot 32794352 Updated default StructuredQuote template. See https://community.fandom.com/wiki/Help:Structured_Quotes for more details. 208 wikitext text/x-wiki <blockquote class="pull-quote"> <div class="pull-quote__text">{{{text|Text...}}}</div> <p style="text-align: right"><cite>—{{{speaker|speaker}}}{{#if:{{{receiver|}}}|, to {{{receiver|}}}}}{{#if:{{{attribution|}}}|, {{{attribution|}}}}}{{#if:{{{source|}}}|, {{{source|}}}}}</cite></p> </blockquote> <noinclude> ==Description== A template used for displaying Structured Quotes ( ''<nowiki>{{#SQuote:}}</nowiki>'' ). If you want to unlock the full potential of Structured Quotes, please avoid using this template directly, and consider ''<nowiki>{{#SQuote:}}</nowiki>'' markup instead. See https://community.fandom.com/wiki/Help:Structured_Quotes for extra information about Structured Quotes. ==Syntax== <pre> {{StructuredQuote | text = | speaker = | receiver = | attribution = | source = }} </pre> ==Samples== {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[Yoda]] |receiver=[[Luke Skywalker]] |source=[[Star Wars: Episode V The Empire Strikes Back]] }} <pre> {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[Yoda]] |receiver=[[Luke Skywalker]] |source=[[Star Wars: Episode V The Empire Strikes Back]] }} </pre> == TemplateData == <templatedata> { "params": { "text": { "label": "Quote text", "description": "quote text", "type": "content", "required": true }, "speaker": { "label": "Person(s) quoted", "description": "individual(s) who uttered or wrote the quoted words (wikitext links, comma-separated)", "type": "content", "required": true }, "receiver": { "label": "Person(s) to whom the quote was spoken", "description": "person the quote was spoken to (wikitext links, comma-separated)", "type": "content", "suggested": true }, "attribution": { "label": "Attribution(s)", "description": "attribution (wikitext links, comma-separated)", "type": "content", "suggested": true }, "source": { "label": "Quote source", "description": "place where it was spoken (wikitext link)", "type": "content", "suggested": true } }, "format": "block" } </templatedata> </noinclude> oo5b57fo2xd1mceyzo6sr5v16rl78qn 209 208 2024-11-08T11:54:57Z FANDOMbot 32794352 Updated default StructuredQuote template. See https://community.fandom.com/wiki/Help:Structured_Quotes for more details. 209 wikitext text/x-wiki <blockquote class="pull-quote"> <div class="pull-quote__text">{{{text|Text...}}}</div> <p style="text-align: right"><cite>—{{{speaker|speaker}}}{{#if:{{{receiver|}}}|, to {{{receiver|}}}}}{{#if:{{{attribution|}}}|, {{{attribution|}}}}}{{#if:{{{source|}}}|, {{{source|}}}}}</cite></p> </blockquote> <noinclude> ==Description== A template used for displaying Structured Quotes ( ''<nowiki>{{#SQuote:}}</nowiki>'' ). If you want to unlock the full potential of Structured Quotes, please avoid using this template directly, and consider ''<nowiki>{{#SQuote:}}</nowiki>'' markup instead. See https://community.fandom.com/wiki/Help:Structured_Quotes for extra information about Structured Quotes. ==Syntax== <pre> {{StructuredQuote | text = | speaker = | receiver = | attribution = | source = }} </pre> ==Samples== {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[w:c:en.starwars:Yoda|Yoda]] |receiver=[[w:c:en.starwars:Luke_Skywalker|Luke Skywalker]] |source=[[w:c:en.starwars:Star_Wars:_Episode_V_The_Empire_Strikes_Back|Star Wars: Episode V The Empire Strikes Back]] }} <pre> {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[Yoda]] |receiver=[[Luke Skywalker]] |source=[[Star Wars: Episode V The Empire Strikes Back]] }} </pre> == TemplateData == <templatedata> { "params": { "text": { "label": "Quote text", "description": "quote text", "type": "content", "required": true }, "speaker": { "label": "Person(s) quoted", "description": "individual(s) who uttered or wrote the quoted words (wikitext links, comma-separated)", "type": "content", "required": true }, "receiver": { "label": "Person(s) to whom the quote was spoken", "description": "person the quote was spoken to (wikitext links, comma-separated)", "type": "content", "suggested": true }, "attribution": { "label": "Attribution(s)", "description": "attribution (wikitext links, comma-separated)", "type": "content", "suggested": true }, "source": { "label": "Quote source", "description": "place where it was spoken (wikitext link)", "type": "content", "suggested": true } }, "format": "block" } </templatedata> </noinclude> t808cx5iy65gb6scx67s6giyg81ape0 210 209 2024-11-15T10:16:45Z FANDOMbot 32794352 Updated default StructuredQuote template. See https://community.fandom.com/wiki/Help:Structured_Quotes for more details. 210 wikitext text/x-wiki <blockquote class="pull-quote"> <div class="pull-quote__text">{{{text|Text...}}}</div> <p style="text-align: right"><cite>—{{{speaker|speaker}}}{{#if:{{{receiver|}}}|, to {{{receiver|}}}}}{{#if:{{{attribution|}}}|, {{{attribution|}}}}}{{#if:{{{source|}}}|, {{{source|}}}}}</cite></p> </blockquote> <noinclude> ==Description== A template used for displaying Structured Quotes ( ''<nowiki>{{#SQuote:}}</nowiki>'' ). If you want to unlock the full potential of Structured Quotes, please avoid using this template directly, and consider ''<nowiki>{{#SQuote:}}</nowiki>'' markup instead. See https://community.fandom.com/wiki/Help:Structured_Quotes for extra information about Structured Quotes. ==Syntax== <pre> {{StructuredQuote | text = | speaker = | receiver = | attribution = | source = }} </pre> ==Samples== {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[w:c:en.starwars:Yoda|Yoda]] |receiver=[[w:c:en.starwars:Luke_Skywalker|Luke Skywalker]] |source=[[w:c:en.starwars:Star_Wars:_Episode_V_The_Empire_Strikes_Back|Star Wars: Episode V The Empire Strikes Back]] }} <pre> {{StructuredQuote |text=Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. (...) |speaker=[[Yoda]] |receiver=[[Luke Skywalker]] |source=[[Star Wars: Episode V The Empire Strikes Back]] }} </pre> == TemplateData == <templatedata> { "params": { "text": { "label": "Quote text", "description": "quote text", "type": "content", "required": true }, "speaker": { "label": "Person(s) quoted", "description": "individual(s) who uttered or wrote the quoted words (wikitext links, comma-separated)", "type": "content", "required": true }, "receiver": { "label": "Person(s) to whom the quote was spoken", "description": "person the quote was spoken to (wikitext links, comma-separated)", "type": "content", "suggested": true }, "attribution": { "label": "Attribution(s)", "description": "attribution (wikitext links, comma-separated)", "type": "content", "suggested": true }, "source": { "label": "Quote source", "description": "place where it was spoken (wikitext link)", "type": "content", "suggested": true } }, "format": "block" } </templatedata> </noinclude> 5gtdrd3qkchyra4j769eptz3qivs29m Template:Stub 10 94 97 2018-03-04T21:54:54Z NoneTheFewer 214879 Created page with "<onlyinclude><div style="margin: 0 15px;">''This article is a '''stub'''. Please help me out by expanding it.''</div> [[Category: Stubs]]</onlyinclude>" 97 wikitext text/x-wiki <onlyinclude><div style="margin: 0 15px;">''This article is a '''stub'''. Please help me out by expanding it.''</div> [[Category: Stubs]]</onlyinclude> a1c1wzlaxujakwhb5c5qugua7l2suau Template:T 10 36 36 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 36 wikitext text/x-wiki <nowiki>{{</nowiki>[[Template:{{{1}}}|{{{1}}}]]{{t/piece|{{{2|---}}}}}{{t/piece|{{{3|---}}}}}{{t/piece|{{{4|---}}}}}{{t/piece|{{{5|---}}}}}{{t/piece|{{{6|---}}}}}{{t/piece|{{{7|---}}}}}{{t/piece|{{{8|---}}}}}{{t/piece|{{{9|---}}}}}{{t/piece|{{{10|---}}}}}{{t/piece|{{{11|---}}}}}{{t/piece|{{{12|---}}}}}{{t/piece|{{{13|---}}}}}{{t/piece|{{{14|---}}}}}{{t/piece|{{{15|---}}}}}{{t/piece|{{{16|---}}}}}{{t/piece|{{{17|---}}}}}{{t/piece|{{{18|---}}}}}{{t/piece|{{{19|---}}}}}{{t/piece|{{{20|---}}}}}{{t/piece|{{{21|---}}}}}<nowiki>}}</nowiki><noinclude> {{documentation}}</noinclude> d49se9v498od26tkx7br49dfrf6ywnj Template:T/doc 10 21 21 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 21 wikitext text/x-wiki ;Description :A template link with a variable number of example parameters (0-20), which can be used to show example inputs. :Utilises [[Template:T/piece]]. ;Syntax :{{t|t|parameter1|parameter2|parameter3|parameter4|...|parameter20}} ;Sample code :<code><nowiki>{{t|infobox}}</nowiki></code> gives... :{{t|infobox}} :<code><nowiki>{{t|infobox|Item1|Item2|Item3|Item4|Item5|...}}</nowiki></code> gives... :{{t|infobox|Item1|Item2|Item3|Item4|Item5|...}} ;See also :[[w:c:wow:Template:T|Template:T]] on WoWWiki <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> bodw2y1qgwizbxkxa60gx2omtrz06cg Template:T/piece 10 37 37 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 37 wikitext text/x-wiki {{#ifeq: {{{1|---}}}|---||&#124;<span style="color:gray;">''&lt;{{{1}}}&gt;''</span>}}<noinclude> {{documentation}}</noinclude> si7jwpfofzeeyqufb5wjvb781qr2745 Template:T/piece/doc 10 22 22 2018-03-04T21:24:08Z FANDOM 32769624 1 revision: Updates made for portability 22 wikitext text/x-wiki ;Description :Parameter piece for {{t|t}}, controls styling/showing of parameter fragments. ;See also :[[w:c:wow:Template:T/piece|Template:T/piece]] on WoWWiki <includeonly>[[Category:Templates|{{PAGENAME}}]]</includeonly><noinclude>[[Category:Template documentation|{{PAGENAME}}]]</noinclude> otrzijc9s23bxspyvwcwr9qkd23utjd Template:Todo 10 116 139 2018-03-16T03:13:45Z NoneTheFewer 214879 Created page with "<includeonly><span style="background-color: #FFC;">'''TODO:''' {{{1}}}</span> [[Category: Todos]]</includeonly>" 139 wikitext text/x-wiki <includeonly><span style="background-color: #FFC;">'''TODO:''' {{{1}}}</span> [[Category: Todos]]</includeonly> 3pbzsiqwl4wx05bojh2snpzo6uwptck Category:Blog posts 14 70 70 2018-03-04T21:24:08Z FANDOM 32769624 70 wikitext text/x-wiki [[Category:Browse]] puqc8r9eprs4g8tnd3en9i77m5fefen Category:Browse 14 2 2 2018-03-04T21:24:08Z FANDOM 32769624 2 wikitext text/x-wiki The main category for this community. A full list of existing categories can be found at [[Special:Categories]]. 5ig3lakvg79nu0pewgho0gy54c6bvxc Category:Candidates for deletion 14 67 67 2018-03-04T21:24:08Z FANDOM 32769624 67 wikitext text/x-wiki Pages in this category have been labelled for deletion. To add a page to this category, type {{t|delete}} on the page. [[Category:Browse]] 2qwmtb1dedeabxhi0oyp4svnugwqb0t Category:Disambiguations 14 68 68 2018-03-04T21:24:08Z FANDOM 32769624 68 wikitext text/x-wiki This category contains [[Help:Disambiguation|disambiguation]] pages &mdash; navigational aids which list other pages that might otherwise share the same title. If an internal link referred you to one of these pages, you might want to go back and fix it to point directly to the intended page. '''Pages may be included in this category by the addition of the template {{t|disambig}} just before the list of similarly-named pages.''' [[Category:Browse]] furxxgr9zf40s9y007tx7szmx351zsy Category:Help 14 69 69 2018-03-04T21:24:08Z FANDOM 32769624 Replaced content with "'''For a full list of help pages, see [[Help:Contents]],''' which includes help pages shared across Wikia. [[Category:Browse]]" 69 wikitext text/x-wiki '''For a full list of help pages, see [[Help:Contents]],''' which includes help pages shared across Wikia. [[Category:Browse]] fg9shi8m07api0fzn82s3fde01ig7h4 Category:Images 14 71 71 2018-03-04T21:24:08Z FANDOM 32769624 71 wikitext text/x-wiki '''Images''' on {{SITENAME}}. [[Category:Browse]] 49yssp8fazse6foxsqh3d3jrtf6h4ry Category:Template documentation 14 19 19 2018-03-04T21:24:08Z FANDOM 32769624 Tweaking category listing and converting idealism to realism for the target market 19 wikitext text/x-wiki This category should contain all '''template documentation pages'''. See [[Template:Documentation]] for more details. [[Category:Templates| Documentation]] hhrr5ltyz96ebw3x0pwu6064duhdnkp Category:Templates 14 9 9 2018-03-04T21:24:08Z FANDOM 32769624 9 wikitext text/x-wiki This is the base category for '''templates'''. Templates should be placed in appropriate subcategories. See [[Project:Templates]] for collated information on templates. [[Category:Browse]] nx87w1iodeej4r9bg2psirgo3vly5yi Message Wall:NoneTheFewer 1200 82 83 2018-03-04T21:24:08Z FANDOMbot 32794352 83 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 205 83 2021-12-01T01:20:30Z FANDOMbot 32794352 FANDOMbot moved page [[Message Wall:XtinaS]] to [[Message Wall:NoneTheFewer]]: Automatically moved page while renaming the user "[[User:XtinaS|XtinaS]]" to "[[User:NoneTheFewer|NoneTheFewer]]" 83 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 Message Wall:Withersoul 235 1200 128 163 2018-04-14T17:59:06Z FANDOMbot 32794352 163 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 Message Wall:XtinaS 1200 147 206 2021-12-01T01:20:30Z FANDOMbot 32794352 FANDOMbot moved page [[Message Wall:XtinaS]] to [[Message Wall:NoneTheFewer]]: Automatically moved page while renaming the user "[[User:XtinaS|XtinaS]]" to "[[User:NoneTheFewer|NoneTheFewer]]" 206 wikitext text/x-wiki #REDIRECT [[Message Wall:NoneTheFewer]] 8wtcs0clj0b5ugf2ic154j9acd4jges Thread:Withersoul 235/@comment-32769624-20180414175907 1201 129 164 2018-04-14T17:59:07Z FANDOM 32769624 Created page with "Hi, I'm an admin for the {{SITENAME}} community. Welcome and thank you for your edit to [[:Thread:127|In regards to the Flash Gaming Wiki]]! If you need help getting started,..." 164 wikitext text/x-wiki Hi, I'm an admin for the {{SITENAME}} community. Welcome and thank you for your edit to [[:Thread:127|In regards to the Flash Gaming Wiki]]! If you need help getting started, check out our [[Help:Getting Started|help pages]] or contact me or [[Special:Listusers/sysop|another admin]] here. For general help, you could also stop by [[w:c:community:main page|Community Central]] to explore the [[w:c:community:Special:Forum|forums]] and [[w:c:community:Blog:Wikia_Staff_Blog|blogs]]. Enjoy your time at {{SITENAME}}!<ac_metadata title="Welcome to Xtinia Wiki!"> </ac_metadata> dbbb7a0otvuir78ny4pqkm5e65tjq1b Thread:XtinaS/@comment-24530269-20180414175904 1201 127 162 2018-04-14T17:59:05Z Withersoul 235 24530269 Created page with "Hello, I've seen that you don't want to continue with the Flash Gaming Wiki. And that if one wants to pick it up, they should message you. So here I am; I picked this wiki be..." 162 wikitext text/x-wiki Hello, I've seen that you don't want to continue with the Flash Gaming Wiki. And that if one wants to pick it up, they should message you. So here I am; I picked this wiki because you seem to be the most active on here. I've got a lot planned for the wiki, including article pages about flash games, CSS, JS and general guidelines. So my question is: Could you give me bureaucrat and admin rights? So that I can run the wiki. If you'd prefer to wait until I made pages and more edits; please let me know. Best regards, Wither<ac_metadata title="In regards to the Flash Gaming Wiki"> </ac_metadata> bivsgcr9dm7nm82fderfcdubfmtp0p2 Thread:XtinaS/@comment-24530269-20180414175904/@comment-214879-20180414181706 1201 131 166 2018-04-14T18:17:06Z NoneTheFewer 214879 Created page with "I'm down. I haven't done much with that wiki in one thousand years, so I'll go do that now. Thanks!" 166 wikitext text/x-wiki I'm down. I haven't done much with that wiki in one thousand years, so I'll go do that now. Thanks! mueyvlk7vnmdp7j9kzjhg28ddyhcy2e Thread:XtinaS/@comment-24530269-20180414175904/@comment-214879-20180414181903 1201 132 167 2018-04-14T18:19:03Z NoneTheFewer 214879 Created page with "Done and done!" 167 wikitext text/x-wiki Done and done! g3tgk21q3mm9j160rgf8spdoxzgsutm Thread:XtinaS/@comment-24530269-20180414175904/@comment-214879-20180414195749 1201 135 170 2018-04-14T19:57:49Z NoneTheFewer 214879 Created page with "Let's see if we can figure out what seven-years-ago me was thinking..." 170 wikitext text/x-wiki Let's see if we can figure out what seven-years-ago me was thinking... bw0jups9xutw1w16bxsmplpys31pqrg Thread:XtinaS/@comment-24530269-20180414175904/@comment-214879-20180414201201 1201 136 171 2018-04-14T20:12:01Z NoneTheFewer 214879 Created page with "I updated the .js page with comments, so that you can track down what I was doing. In some cases, I have zero idea wtf I was thinking, more's the pity..." 171 wikitext text/x-wiki I updated the .js page with comments, so that you can track down what I was doing. In some cases, I have zero idea wtf I was thinking, more's the pity... i51cp29ymrtymudbkygpqf90n25a14y Thread:XtinaS/@comment-24530269-20180414175904/@comment-24530269-20180414184141 1201 133 168 2018-04-14T18:41:41Z Withersoul 235 24530269 Created page with "Thank you! =)" 168 wikitext text/x-wiki Thank you! =) 1j5pz454cxnbk5ztt6jr5yrhxra4zqu Thread:XtinaS/@comment-24530269-20180414175904/@comment-24530269-20180414184924 1201 134 169 2018-04-14T18:49:24Z Withersoul 235 24530269 Created page with "Also; what do the existing codes in Common.js do? And I mean, all revisions, not just the current one. Sorry, but I really wanna know what it does for various reasons." 169 wikitext text/x-wiki Also; what do the existing codes in Common.js do? And I mean, all revisions, not just the current one. Sorry, but I really wanna know what it does for various reasons. 97djrsdyrvi8ozb0mx7k1qhqcr42z2p Thread:XtinaS/@comment-24530269-20180414175904/@comment-24530269-20180415081506 1201 137 172 2018-04-15T08:15:06Z Withersoul 235 24530269 Created page with "Thanks." 172 wikitext text/x-wiki Thanks. ba88pkiohw68895d5yak4m48rstsn8r Thread:XtinaS/@comment-8-20180304212409 1201 83 84 2018-03-04T21:24:09Z Sannse 8 Created page with "Hello, I'm a member of FANDOM's Community Support team. We're excited to have {{subst:SITENAME}} as part of the FANDOM community! It may seem like there’s a lot to do, but ..." 84 wikitext text/x-wiki Hello, I'm a member of FANDOM's Community Support team. We're excited to have Xtinia Wiki as part of the FANDOM community! It may seem like there’s a lot to do, but we’re here to help make getting started quick and easy. Here are some helpful tips and links to get your community going: *Check out [[Special:WikiFeatures|Wiki Features]] to turn on some special features including our popular community Chat. *Customize your community’s color and style by visiting the [[Special:ThemeDesigner|Theme Designer]]. *Stop by [[w:c:community|Community Central]] to check out the [[w:c:community:Blog:Wikia_Staff_Blog|staff blog]], and ask questions on our [[w:c:community:Special:Forum|community forum]]. *Lastly, visit our [[Help:Contents|help pages]] to learn the ins and outs of using FANDOM, or visit [[w:c:community:Wikia_University|FANDOM University]] for quick how-to videos. Have fun!<ac_metadata title="Welcome!"> </ac_metadata> dkg9af55du8568yq8fuc8m60t5h7w9p Blog:Recent posts 502 29 29 2018-03-04T21:24:08Z FANDOM 32769624 Blog listing page created. 29 wikitext text/x-wiki <bloglist summary="true" timestamp="true" count=50> <title>Recent posts</title> <type>plain</type> <order>date</order> </bloglist> loh1m27hln5mi35oc3rjjp2emdxoxu7